Questions tagged [grafana]

Grafana is a multi-platform analytics and visualization web application and toolkit. Official builds are available for Linux, Windows and OS X.

Grafana is a multi-platform analytics and visualization web application and toolkit. Grafana features and extensive plugin system with Data Sources (different ways to import data) and Panels (different ways to visualize data).

Grafana features Dashboards, which are configurations of Data Sources (inputs) and Panels (outputs), to represent a certain visualization of data. User Dashboards can be saved and shared with the rest of the Grafana community.

Grafana is open source under the GNU AGPL v3.0 license.

22 questions
5
votes
1 answer

Grafana provisioning dashboards in Docker

How can I save dashboard YAML for Grafana container, to load upon creation? docker-compose.yml: grafana: image: grafana/grafana container_name: grafana volumes: -…
3
votes
1 answer

Grafana Docker entrypoint script stops with "No such file or directory", but file is there

I'm trying to run Grafana on my Raspberry Pi 3 with docker. My docker-compose entry for it is pretty straightforward: version: '3.7' services: grafana: container_name: grafana image: grafana/grafana restart: always ports: -…
LimaKilo
  • 141
2
votes
1 answer

How to add my own mapping table to the dropdown menu of the "field lookup" function in the "Transform" tab of a Grafana dashboard panel?

The following functions are from the "Transform tab" in Grafana, have a look at Transformation types and options for examples. I have tested the "Rename by regex" function which works fine, see the small example in the screenshot where I replace the…
questionto42
  • 2,691
2
votes
1 answer

Prometheus Blackbox Exporter TCP probe returns value of 0, even when port is open (Iperf3 server)

I have a strange problem that I've been digging into the last couple of days. The setup I have an Iperf3 server running in Docker on this internal address and port: 10.10.2.2:5201 I also have Prometheus and Grafana running in Docker, to monitor…
2
votes
1 answer

How to set 24h time format in Grafana

in grafana.ini I have set [date_formats] full_date = YYYY-MMM-DD @ HH:mm:ss a interval_second = HH:mm:ss a interval_minute = HH:mm a interval_hour = MMM DD HH:mm a interval_day = MMM DD interval_month = YYYY-MM interval_year = YYYY (ISO8601) but in…
LeifSec
  • 113
1
vote
1 answer

Grafana: How to set Table cell color by comparing two values

Using Prometheus as datasource, in Grafana, I have a Table visualization that lists kubernetes containers and their versions using this query: kube_pod_container_info{namespace="$namespace", pod=~"pod-.*"} Example table looks like this: | pod …
oaaya
  • 133
1
vote
0 answers

How to stop panels from refreshing when navigating from edit page to dashboard page in grafana?

I am using grafana version v9.3.2. We are pulling some data from amazon athena datasources and queries are quite large. We do not want these queries to be running automatically since there is cost associated with each time we query database. For…
1
vote
0 answers

Show difference between multiple values from one measurements in InfluxDB within one Grafana panel

I am currently trying to display difference of results from 2 sensors in a Grafana panel. In my InfluxDB database I have a measurement that holds values of both sensors: > SELECT * FROM "Vergleich" WHERE time>now()-2m name: Vergleich time …
Gerhardh
  • 201
1
vote
0 answers

Grafana cutting of legend names

I'm new to grafana and I want to keep grafana from cutting my legend in half as seen in the picture below. Does anyone know how to do that?
cheesus
  • 155
1
vote
0 answers

InfluxDB database suddenly just stops

I had a couple of power outages today due to some electrical work being done on my house. Now I'm finding that my InfluxDB / Grafana set up not working for very long before crashing - I think that it is InfluxDB that is crashing. I collect air…
1
vote
1 answer

Trying to display multiple hosts for single metrics in InfluxDB + Grafana

Running Grafana 5.4.2-1 + InfluxDB 1.7.4-1 + Telegraf 1.9.4-1 on CentOS 7.6. I used to run a monitoring stack on collectd -> graphite -> grafana, where say, a single metrics (CPU Idle) graph can show multiple polled hosts into the same dashboard…
0
votes
1 answer

Running OTEL agent as windows service is not working

Want to run Otel collecor agent as Windows services. So downloaded latest windows release package and run the following command to create service and start the service. sc.exe create otelcol displayname= otelcol start=…
saravana
  • 101
0
votes
0 answers

Prometheus can't reach node-exporter

I "inherited" old code for a server running several docker containers. Grafana and Prometheus are used to monitor stats, as well as node-exporter. Unfortunately, the node-exporter container is shown as down in Prometheus. The error message is Get…
LizzAlice
  • 111
0
votes
1 answer

How to convert a private, public PEM files and it's cer file to a fullchain and private key?

I have 3 files, a private pem cert, a public pem cert and a file containing CA's that signed those. (it's in plain text). I am attempting to set up grafana which requires an rsa private key, and a fullchain certificate. I'm not exactly sure what a…
0
votes
1 answer

Force Grafana Agent to use IPv4 for scraping Prometheus data from Spring Boot application

Is there a way to force the Grafana Agent to use IPv4 when scraping Prometheus data from a Spring Boot application? In the Tomcat access logs of the application, I'm seeing that the Grafana Agent request comes from 0:0:0:0:0:0:0:1 instead of the…
geschema
  • 153
1
2