-
-
Notifications
You must be signed in to change notification settings - Fork 69
Telegraf HTTP Input
Lorenzo Mangani edited this page Feb 19, 2024
·
8 revisions
![](https://user-images.githubusercontent.com/1423657/218816262-e0e8d7ad-44d0-4a7d-9497-0d383ed78b83.png)
qryn features basic supports for ingesting bulk metrics from Telegraf HTTP output plugin:
[[outputs.http]]
url = "http://qryn:3100/influx"
data_format = "json"
method = "POST"
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)
![](https://user-images.githubusercontent.com/1423657/100233935-aba85600-2f2a-11eb-94db-312069296e16.png)
The following | ts
pipe is available to parse regular tag values to fingerprint statistics:
{cpu="cpu0"} | ts
![](https://user-images.githubusercontent.com/1423657/99987967-5d237c00-2db1-11eb-998c-04ec6deae971.gif)