new to Influxdb but liking it a lot I've configured it gather metrics from snmp polled devices - primarily network nodes I can happily graph the statistics polled using derived values but what I want to know Is it possible to create a new measurement in influxdb from data already stored? The use case is we poll network traffic and graph it by doing the derived difference between the current and last reading (grafana) What I want to do is create a measurement that does that in the influxdb and stores it. This is primarily so I can setup monitoring of the new derived value using a simple query and alert if it drops below x.
I have a measurement snmp_rx / snmp_tx with host and port name with the polled ifHCInOctets and ifHCOutOctets so can I do a process that continuously creates a new measurement for each showing the difference between current and last readings? Thanks