influxql2flux icon indicating copy to clipboard operation
influxql2flux copied to clipboard

InfluxQL to Flux transpiler

Results 4 influxql2flux issues
Sort by recently updated
recently updated
newest added

In its current state, it's not usable at all as it's unlicensed.

I was using influxql2flux for a while now and noticed an even better solution than https://github.com/TwentyFiveSoftware/influxql2flux/issues/2 would be to have an input-field, where you could define your bucket name instead...

Suppose I have a InfluxQL query ``` SELECT "mean" FROM "method_timed" WHERE ("environment_name" =~ /^$environment_name$/) GROUP BY "notification_type" ``` Where `$environment_name$` is an Grafana template variable, which is used inside...

For creating template variables inside Grafana one can create variables, which are templated with a set of available values. In InfluxQL one would use ``` SHOW TAG VALUES FROM ""...