I’m wondering what is the best way to get water meter pulse_counter data into InfluxDB. If I just track the pulse counter, I end up with a running total value for each entry (1, 2, 3, 4, 5…) as the pulses increase. I want to be able to count pulses and graph usage per day/hr/etc within Influx/Grafana. Currently the best way to do this would just be to query and count entries (assuming one pulse per entry, even though the running total value is higher), but it seems like there must be a cleaner way to do this.
Thanks!