Skip to content

Commit e146e3a

Browse files
Chen Zhilingfeast-ci-bot
authored andcommitted
Change default job metrics sink to statsd (#315)
* Change default job metrics sink to statsd * Change port to 9125
1 parent 2d8cc6f commit e146e3a

2 files changed

Lines changed: 7 additions & 9 deletions

File tree

core/src/main/resources/application.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,12 @@ feast:
3333
metrics:
3434
# Enable metrics pushing for all ingestion jobs.
3535
enabled: false
36-
# Type of metrics sink. Only prometheus is currently supported.
37-
type: prometheus
38-
# Host of the metrics sink. In the case of prometheus, this is the host of the prometheus
39-
# pushGateway to sink metrics to.
36+
# Type of metrics sink. Only statsd is currently supported.
37+
type: statsd
38+
# Host of the metrics sink.
4039
host: localhost
41-
# Port of the metrics sink. In the case of prometheus, this is the port of the prometheus
42-
# pushGateway to sink metrics to.
43-
port: 9091
40+
# Port of the metrics sink.
41+
port: 9125
4442

4543
stream:
4644
# Feature stream type. Only kafka is supported.

infra/charts/feast/charts/feast-core/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ application.yaml:
6464
options: {}
6565
metrics:
6666
enabled: false
67-
type: prometheus
67+
type: statsd
6868
host: localhost
69-
port: 9091
69+
port: 9125
7070
stream:
7171
type: kafka
7272
options:

0 commit comments

Comments
 (0)