Skip to content

Commit

Permalink
Change default job metrics sink to statsd (#315)
Browse files Browse the repository at this point in the history
* Change default job metrics sink to statsd

* Change port to 9125
  • Loading branch information
Chen Zhiling authored and feast-ci-bot committed Nov 21, 2019
1 parent 2d8cc6f commit e146e3a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
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

0 comments on commit e146e3a

Please sign in to comment.