├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── docs.yml │ ├── ecr.yml │ └── go.yml ├── Dockerfile ├── Dockerfile.lambda ├── LICENSE ├── README.md ├── cmd ├── lambda │ └── fluxpipe-lambda.go ├── lib │ └── fluxpipelib.go └── server │ └── fluxpipe-server.go ├── docs ├── README.md ├── _sidebar.md ├── array.md ├── bitwise.md ├── contrib │ ├── RohanSreerama5 │ │ └── naiveBayesClassifier.md │ ├── anaisdg │ │ ├── anomalydetection.md │ │ └── statsmodels.md │ ├── bonitoo-io │ │ ├── alerta.md │ │ ├── hex.md │ │ ├── servicenow.md │ │ ├── tickscript.md │ │ ├── victorops.md │ │ └── zenoss.md │ ├── chobbs │ │ └── discord.md │ ├── jsternberg │ │ └── influxdb.md │ ├── qxip │ │ ├── clickhouse.md │ │ ├── hash.md │ │ ├── iox.md │ │ └── logql.md │ ├── rhajek │ │ └── bigpanda.md │ ├── sranka │ │ ├── opsgenie.md │ │ ├── sensu.md │ │ ├── teams.md │ │ ├── telegram.md │ │ └── webexteams.md │ └── tomhollingworth │ │ └── events.md ├── csv.md ├── date.md ├── date │ └── boundaries.md ├── dict.md ├── docsify.js ├── experimental.md ├── experimental │ ├── aggregate.md │ ├── array.md │ ├── bigtable.md │ ├── bitwise.md │ ├── csv.md │ ├── date │ │ └── boundaries.md │ ├── dynamic.md │ ├── geo.md │ ├── http.md │ ├── http │ │ └── requests.md │ ├── influxdb.md │ ├── iox.md │ ├── json.md │ ├── mqtt.md │ ├── oee.md │ ├── polyline.md │ ├── prometheus.md │ ├── query.md │ ├── record.md │ ├── table.md │ └── usage.md ├── favicon.png ├── flux-docs-short.json ├── gendocs.js ├── generate.md ├── http.md ├── http │ └── requests.md ├── index.html ├── influxdata │ ├── influxdb.md │ └── influxdb │ │ ├── monitor.md │ │ ├── sample.md │ │ ├── schema.md │ │ ├── secrets.md │ │ ├── tasks.md │ │ └── v1.md ├── internal │ ├── boolean.md │ ├── debug.md │ ├── gen.md │ ├── influxql.md │ ├── location.md │ ├── promql.md │ ├── testing.md │ └── testutil.md ├── interpolate.md ├── join.md ├── json.md ├── kafka.md ├── math.md ├── pagerduty.md ├── planner.md ├── profiler.md ├── pushbullet.md ├── regexp.md ├── runtime.md ├── sampledata.md ├── slack.md ├── socket.md ├── sql.md ├── strings.md ├── system.md ├── testing.md ├── testing │ └── expect.md ├── timezone.md ├── types.md └── universe.md ├── flux.md ├── flux.pc ├── go.mod ├── go.sum ├── scripts ├── btc_json.flux ├── clickhouse_query.flux ├── csv.flux ├── env.flux ├── flightsql_iox.flux ├── generate.flux ├── http.flux ├── http_json.flux ├── http_pipe.flux ├── http_post_form.flux ├── json_map.flux ├── kafka.flux ├── logql_json.flux ├── logql_json_value.flux ├── logql_push.flux ├── logql_query_grafana.flux ├── mqtt.flux ├── prom_scrape.flux ├── s3_read_csv.flux ├── sampledata.flux ├── socket_decode.flux ├── sql.flux └── sql_clickhouse.flux ├── service └── service.go └── static ├── favicon.ico ├── play.html └── static.go /.gitattributes: -------------------------------------------------------------------------------- 1 | static/* linguist-generated 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/ecr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/.github/workflows/ecr.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/Dockerfile.lambda -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/README.md -------------------------------------------------------------------------------- /cmd/lambda/fluxpipe-lambda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/cmd/lambda/fluxpipe-lambda.go -------------------------------------------------------------------------------- /cmd/lib/fluxpipelib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/cmd/lib/fluxpipelib.go -------------------------------------------------------------------------------- /cmd/server/fluxpipe-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/cmd/server/fluxpipe-server.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/array.md -------------------------------------------------------------------------------- /docs/bitwise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/bitwise.md -------------------------------------------------------------------------------- /docs/contrib/RohanSreerama5/naiveBayesClassifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/RohanSreerama5/naiveBayesClassifier.md -------------------------------------------------------------------------------- /docs/contrib/anaisdg/anomalydetection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/anaisdg/anomalydetection.md -------------------------------------------------------------------------------- /docs/contrib/anaisdg/statsmodels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/anaisdg/statsmodels.md -------------------------------------------------------------------------------- /docs/contrib/bonitoo-io/alerta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/bonitoo-io/alerta.md -------------------------------------------------------------------------------- /docs/contrib/bonitoo-io/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/bonitoo-io/hex.md -------------------------------------------------------------------------------- /docs/contrib/bonitoo-io/servicenow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/bonitoo-io/servicenow.md -------------------------------------------------------------------------------- /docs/contrib/bonitoo-io/tickscript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/bonitoo-io/tickscript.md -------------------------------------------------------------------------------- /docs/contrib/bonitoo-io/victorops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/bonitoo-io/victorops.md -------------------------------------------------------------------------------- /docs/contrib/bonitoo-io/zenoss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/bonitoo-io/zenoss.md -------------------------------------------------------------------------------- /docs/contrib/chobbs/discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/chobbs/discord.md -------------------------------------------------------------------------------- /docs/contrib/jsternberg/influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/jsternberg/influxdb.md -------------------------------------------------------------------------------- /docs/contrib/qxip/clickhouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/qxip/clickhouse.md -------------------------------------------------------------------------------- /docs/contrib/qxip/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/qxip/hash.md -------------------------------------------------------------------------------- /docs/contrib/qxip/iox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/qxip/iox.md -------------------------------------------------------------------------------- /docs/contrib/qxip/logql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/qxip/logql.md -------------------------------------------------------------------------------- /docs/contrib/rhajek/bigpanda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/rhajek/bigpanda.md -------------------------------------------------------------------------------- /docs/contrib/sranka/opsgenie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/sranka/opsgenie.md -------------------------------------------------------------------------------- /docs/contrib/sranka/sensu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/sranka/sensu.md -------------------------------------------------------------------------------- /docs/contrib/sranka/teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/sranka/teams.md -------------------------------------------------------------------------------- /docs/contrib/sranka/telegram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/sranka/telegram.md -------------------------------------------------------------------------------- /docs/contrib/sranka/webexteams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/sranka/webexteams.md -------------------------------------------------------------------------------- /docs/contrib/tomhollingworth/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/contrib/tomhollingworth/events.md -------------------------------------------------------------------------------- /docs/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/csv.md -------------------------------------------------------------------------------- /docs/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/date.md -------------------------------------------------------------------------------- /docs/date/boundaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/date/boundaries.md -------------------------------------------------------------------------------- /docs/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/dict.md -------------------------------------------------------------------------------- /docs/docsify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/docsify.js -------------------------------------------------------------------------------- /docs/experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental.md -------------------------------------------------------------------------------- /docs/experimental/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/aggregate.md -------------------------------------------------------------------------------- /docs/experimental/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/array.md -------------------------------------------------------------------------------- /docs/experimental/bigtable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/bigtable.md -------------------------------------------------------------------------------- /docs/experimental/bitwise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/bitwise.md -------------------------------------------------------------------------------- /docs/experimental/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/csv.md -------------------------------------------------------------------------------- /docs/experimental/date/boundaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/date/boundaries.md -------------------------------------------------------------------------------- /docs/experimental/dynamic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/dynamic.md -------------------------------------------------------------------------------- /docs/experimental/geo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/geo.md -------------------------------------------------------------------------------- /docs/experimental/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/http.md -------------------------------------------------------------------------------- /docs/experimental/http/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/http/requests.md -------------------------------------------------------------------------------- /docs/experimental/influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/influxdb.md -------------------------------------------------------------------------------- /docs/experimental/iox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/iox.md -------------------------------------------------------------------------------- /docs/experimental/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/json.md -------------------------------------------------------------------------------- /docs/experimental/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/mqtt.md -------------------------------------------------------------------------------- /docs/experimental/oee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/oee.md -------------------------------------------------------------------------------- /docs/experimental/polyline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/polyline.md -------------------------------------------------------------------------------- /docs/experimental/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/prometheus.md -------------------------------------------------------------------------------- /docs/experimental/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/query.md -------------------------------------------------------------------------------- /docs/experimental/record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/record.md -------------------------------------------------------------------------------- /docs/experimental/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/table.md -------------------------------------------------------------------------------- /docs/experimental/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/experimental/usage.md -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/flux-docs-short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/flux-docs-short.json -------------------------------------------------------------------------------- /docs/gendocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/gendocs.js -------------------------------------------------------------------------------- /docs/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/generate.md -------------------------------------------------------------------------------- /docs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/http.md -------------------------------------------------------------------------------- /docs/http/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/http/requests.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/influxdata/influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/influxdata/influxdb.md -------------------------------------------------------------------------------- /docs/influxdata/influxdb/monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/influxdata/influxdb/monitor.md -------------------------------------------------------------------------------- /docs/influxdata/influxdb/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/influxdata/influxdb/sample.md -------------------------------------------------------------------------------- /docs/influxdata/influxdb/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/influxdata/influxdb/schema.md -------------------------------------------------------------------------------- /docs/influxdata/influxdb/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/influxdata/influxdb/secrets.md -------------------------------------------------------------------------------- /docs/influxdata/influxdb/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/influxdata/influxdb/tasks.md -------------------------------------------------------------------------------- /docs/influxdata/influxdb/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/influxdata/influxdb/v1.md -------------------------------------------------------------------------------- /docs/internal/boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/boolean.md -------------------------------------------------------------------------------- /docs/internal/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/debug.md -------------------------------------------------------------------------------- /docs/internal/gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/gen.md -------------------------------------------------------------------------------- /docs/internal/influxql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/influxql.md -------------------------------------------------------------------------------- /docs/internal/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/location.md -------------------------------------------------------------------------------- /docs/internal/promql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/promql.md -------------------------------------------------------------------------------- /docs/internal/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/testing.md -------------------------------------------------------------------------------- /docs/internal/testutil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/internal/testutil.md -------------------------------------------------------------------------------- /docs/interpolate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/interpolate.md -------------------------------------------------------------------------------- /docs/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/join.md -------------------------------------------------------------------------------- /docs/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/json.md -------------------------------------------------------------------------------- /docs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/kafka.md -------------------------------------------------------------------------------- /docs/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/math.md -------------------------------------------------------------------------------- /docs/pagerduty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/pagerduty.md -------------------------------------------------------------------------------- /docs/planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/planner.md -------------------------------------------------------------------------------- /docs/profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/profiler.md -------------------------------------------------------------------------------- /docs/pushbullet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/pushbullet.md -------------------------------------------------------------------------------- /docs/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/regexp.md -------------------------------------------------------------------------------- /docs/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/runtime.md -------------------------------------------------------------------------------- /docs/sampledata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/sampledata.md -------------------------------------------------------------------------------- /docs/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/slack.md -------------------------------------------------------------------------------- /docs/socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/socket.md -------------------------------------------------------------------------------- /docs/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/sql.md -------------------------------------------------------------------------------- /docs/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/strings.md -------------------------------------------------------------------------------- /docs/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/system.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/testing/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/testing/expect.md -------------------------------------------------------------------------------- /docs/timezone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/timezone.md -------------------------------------------------------------------------------- /docs/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/types.md -------------------------------------------------------------------------------- /docs/universe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/docs/universe.md -------------------------------------------------------------------------------- /flux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/flux.md -------------------------------------------------------------------------------- /flux.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/flux.pc -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/go.sum -------------------------------------------------------------------------------- /scripts/btc_json.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/btc_json.flux -------------------------------------------------------------------------------- /scripts/clickhouse_query.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/clickhouse_query.flux -------------------------------------------------------------------------------- /scripts/csv.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/csv.flux -------------------------------------------------------------------------------- /scripts/env.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/env.flux -------------------------------------------------------------------------------- /scripts/flightsql_iox.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/flightsql_iox.flux -------------------------------------------------------------------------------- /scripts/generate.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/generate.flux -------------------------------------------------------------------------------- /scripts/http.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/http.flux -------------------------------------------------------------------------------- /scripts/http_json.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/http_json.flux -------------------------------------------------------------------------------- /scripts/http_pipe.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/http_pipe.flux -------------------------------------------------------------------------------- /scripts/http_post_form.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/http_post_form.flux -------------------------------------------------------------------------------- /scripts/json_map.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/json_map.flux -------------------------------------------------------------------------------- /scripts/kafka.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/kafka.flux -------------------------------------------------------------------------------- /scripts/logql_json.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/logql_json.flux -------------------------------------------------------------------------------- /scripts/logql_json_value.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/logql_json_value.flux -------------------------------------------------------------------------------- /scripts/logql_push.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/logql_push.flux -------------------------------------------------------------------------------- /scripts/logql_query_grafana.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/logql_query_grafana.flux -------------------------------------------------------------------------------- /scripts/mqtt.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/mqtt.flux -------------------------------------------------------------------------------- /scripts/prom_scrape.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/prom_scrape.flux -------------------------------------------------------------------------------- /scripts/s3_read_csv.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/s3_read_csv.flux -------------------------------------------------------------------------------- /scripts/sampledata.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/sampledata.flux -------------------------------------------------------------------------------- /scripts/socket_decode.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/socket_decode.flux -------------------------------------------------------------------------------- /scripts/sql.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/sql.flux -------------------------------------------------------------------------------- /scripts/sql_clickhouse.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/scripts/sql_clickhouse.flux -------------------------------------------------------------------------------- /service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/service/service.go -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/static/play.html -------------------------------------------------------------------------------- /static/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metrico/fluXpipe/HEAD/static/static.go --------------------------------------------------------------------------------