Grafana Dashboard

Grafana Dashboard

@allangood

View on Github
Open Issues
Stargazers

Download dashboard from here: Graylog Metrics dashboard for Grafana | Grafana Labs

This dashboard uses Graylog plugin from Telegraf.

First, create a token to interact with the Graylog API: Graylog REST API — Graylog 2.2.1 documentation

Then, create a file “/etc/telegraf/telegraf.d/graylog.conf” with this content:

[[inputs.graylog]]
  servers = [
    "https://<YOUR_GRAYLOG_IP_OR_NAME>:9000/api/system/metrics/multiple",
  ]
  metrics = [
    "jvm.threads.count",
    "jvm.memory.total.init",
    "jvm.memory.total.used",
    "org.graylog2.journal.size",
    "org.graylog2.journal.size-limit",
    "org.graylog2.buffers.input.size",
    "org.graylog2.buffers.input.usage",
    "org.graylog2.buffers.output.size",
    "org.graylog2.buffers.output.usage",
    "org.graylog2.buffers.process.size",
    "org.graylog2.buffers.process.usage",
    "org.graylog2.journal.append.1-sec-rate",
    "org.graylog2.journal.utilization-ratio",
    "org.graylog2.throughput.input.1-sec-rate",
    "org.graylog2.throughput.output.1-sec-rate"
  ]
  username = "Your token here"
  password = "token"
  insecure_skip_verify = true