Skip to content

Telegraf HTTP Input

Lorenzo Mangani edited this page Feb 19, 2024 · 8 revisions

qryn features basic supports for ingesting bulk metrics from Telegraf HTTP output plugin:

Telegraf Configuration

[[outputs.http]]
  url = "http://qryn:3100/influx"
  data_format = "json"
  method = "POST"

Query Metrics

Logs and Metrics are stored in different columns within the same table.

The unwrap_value can be used to access qryn stored metrics and automatically uses fingerprints in the response:

sum(rate({cpu="cpu0"} | unwrap_value [60s])) by (cpu)

The following | ts pipe is available to parse regular tag values to fingerprint statistics:

{cpu="cpu0"} | ts
Clone this wiki locally