Skip to content

Commit

Permalink
Write value_count metric to InfluxDB
Browse files Browse the repository at this point in the history
  • Loading branch information
davidheryanto committed Oct 6, 2019
1 parent dd216c2 commit c471073
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ public void processElement(ProcessContext c) {
.addField("value_mean", statsForValue.getAverage())
.addField("value_min", statsForValue.getMin())
.addField("value_max", statsForValue.getMax())
.addField("value_count", statsForValue.getCount())
.tag("feature_id", featureId)
.tag("entity_name", entityName)
.build());
Expand Down

0 comments on commit c471073

Please sign in to comment.