I can dump the data from the script checkmark into a separate database ...
stream |from() .database('telegraf') .measurement('cpu') .groupBy(*) .where(lambda: "cpu" == 'cpu-total') |eval( lambda: 100.0 - "usage_idle" ) .as('usage_util') .keep() .quiet() |InfluxDBOut() .create() .database('debugging')
Then I use Chronograf explorer to view the results ...
source share