Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions core/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,12 @@ feast:
metrics:
# Enable metrics pushing for all ingestion jobs.
enabled: false
# Type of metrics sink. Only prometheus is currently supported.
type: prometheus
# Host of the metrics sink. In the case of prometheus, this is the host of the prometheus
# pushGateway to sink metrics to.
# Type of metrics sink. Only statsd is currently supported.
type: statsd
# Host of the metrics sink.
host: localhost
# Port of the metrics sink. In the case of prometheus, this is the port of the prometheus
# pushGateway to sink metrics to.
port: 9091
# Port of the metrics sink.
port: 9125

stream:
# Feature stream type. Only kafka is supported.
Expand Down
4 changes: 2 additions & 2 deletions infra/charts/feast/charts/feast-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ application.yaml:
options: {}
metrics:
enabled: false
type: prometheus
type: statsd
host: localhost
port: 9091
port: 9125
stream:
type: kafka
options:
Expand Down