Questions tagged [telegraf]

22 questions
4
votes
2 answers

Influxdb is restarting constantly since my last reboot

Since my last reboot, I am seeing the following every 1-2 minutes: Aug 02 13:53:00 monitor systemd[1]: influxdb.service: start operation timed out. Terminating. Aug 02 13:53:00 monitor systemd[1]: influxdb.service: Failed with result 'timeout'. Aug…
SlyOne
  • 363
  • 2
  • 7
3
votes
0 answers

How to apply grok to logs from syslog in telegraf?

In my current setup I am using Telegraf to ingest nginx logs from syslog and spit them out into influxdb. This works great. Telegraf has support for grok log parsing. As far as I can tell it can be invoked for [[inputs.file]] and for…
1
vote
0 answers

Convert json file to prometheus metrics

I have nginx json access log like this, a file that append sample like this to end of file. { "time": "2019-11-27T08:23:39+00:00", "msec": 1574843019.787, "ip": "91.133.248.69", "agent_name": "firefox", "agent_version": "70", "agent_os":…
1
vote
1 answer

How to monitor cloud system metrics through grafana

I have a system configured with telegraf + InfluxDB + Grafana in one machine. Now i need to collect server metrics for ubuntu servers which is deployed in cloud and need to plot in grafana. My question here is : Can i collect the metrics through…
KK_3353
  • 11
  • 1
1
vote
0 answers

telegraf enum plugin not injecting the correct destination field

I have the following telegraf configurations: [[inputs.http_response]] name_override="test" address="https://localhost:12345/test" response_timeout="5s" method="GET" follow_redirects=false insecure_skip_verify = true response_string_match="test is…
0
votes
1 answer

Monitor all processes in Linux with telegraf and grafana

I have a task to configure monitoring of all processes in a Linux system with Telegraf and Grafana. But there is some issue that there are many processes in a system. For gathering information about processes I have used Procstat plugin. Procstat…
user510984
0
votes
1 answer

Monitor Java Heap on a Centos Server via Telegraf/Grafana

How to Monitor Java Heap usage on centos server using Telegraf and Grafana? This monitoring is particularly for Logstash process running on the server. I tried to use JSTAT to get data, but it has lot of numbers which needs manipulation to obtain…
Darktux
  • 827
  • 5
  • 21
  • 36
0
votes
1 answer

enabling telegraf system input plugin on OpenBSD 6.5

https://github.com/influxdata/telegraf/tree/master/plugins/inputs/system Could use some examples. I have tried adding values listed in the above page to [[inputs.system]] For example: [[inputs.system]] load5 Then I run: telegraf -config…
mr.zog
  • 923
  • 3
  • 20
  • 39
0
votes
1 answer

Telegraf not working with sysstat options like `-d` or `-n ALL`?

I am attempting to setup Telegraf on a Proxmox (Debian-based distro) to send metrics to InfluxDB. However, it seems to be complaining about sysstat syntax. I am using the sysstat plugin in Telegraf. Per the configuration file, I have a section like…
victorhooi
  • 515
  • 3
  • 11
  • 20
0
votes
2 answers

While attempting to build telegraf on OpenBSD 6.4, gmake said:

I have followed the instructions from this page but gmake fails. Am I missing a dependency? https://www.tumfatig.net/20180905/running-telegraf-openbsd dep ensure -vendor-only SIGSYS: bad system call PC=0x485670 m=9 sigcode=0 goroutine 305…
mr.zog
  • 923
  • 3
  • 20
  • 39
0
votes
0 answers

How can I do a difference between values at t0 and t1 in a received data set in Grafana?

I am trying capture the interface bandwidth on a firewall using SNMPv3 and show it on Grafana, I want to do a difference in values at t0 and t1 in the table below in Grafana, for eg., for a difference between the first and second value in…
xis10z
  • 111
  • 1
0
votes
0 answers

Agent prometheus does not send metrics

I am trying to configure a Prometheus agent with the 'remote_write' function. The Prometheus agent configuration file has these parameters. global: scrape_interval: 30s external_labels: environment: roble remote_write: - url:…
Félix
  • 1
0
votes
2 answers

Send InfluxDB2 Metrics to different Buckets with Telegraf

I would like to put different metrics in different buckets. In my bucket Websites, I want to put HTTP response metrics. This is how my configuration file /etc/telegraf/telegraf.d/httpmetrics.conf looks like: [[inputs.http_response]] ## List of…
Gill-Bates
  • 585
  • 2
  • 8
  • 23
0
votes
1 answer

"A service is listening on all interfaces" - explanation needed?

We got a security report, and one of the points was that a service is listening on all interfaces. I am not a security guy and I find it hard to understand what needs to be done and how to do it. The "service" is telegraf agent running in a docker…
gai-jin
  • 113
  • 5
0
votes
1 answer

Why do the creators of this dashboard multiply bytes by 8 to get bits? Isn't it the other way around?

To monitor a server we have imported a dashboard for Grafana. This uses Telegraf and InfluxDB as collector and database. When certain graphs needed to be adjusted, I noticed that in the network speed queries, the bytes received (bytes_recv) are…
JJandke
  • 3
  • 1
1
2