Skip to content

Commit c471073

Browse files
committed
Write value_count metric to InfluxDB
1 parent dd216c2 commit c471073

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

ingestion/src/main/java/feast/ingestion/transform/WriteFeatureMetricsToInfluxDB.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ public void processElement(ProcessContext c) {
148148
.addField("value_mean", statsForValue.getAverage())
149149
.addField("value_min", statsForValue.getMin())
150150
.addField("value_max", statsForValue.getMax())
151+
.addField("value_count", statsForValue.getCount())
151152
.tag("feature_id", featureId)
152153
.tag("entity_name", entityName)
153154
.build());

0 commit comments

Comments
 (0)