Questions tagged [grafana]

Grafana is an open-source web application for visualizing time-series databases (InfluxDB, Graphite, Prometheus, OpenTSDB), logging & document databases (Loki, Elasticsearch, Splunk, MongoDB), SQL databases (MySQL, PostgreSQL, Redshift), cloud metric databases (AWS CloudWatch, GCP Monitoring, Azure Monitor) and other datasources.

Grafana is an open source metric analytics & visualization suite. It is most commonly used for visualizing time series data for infrastructure and application analytics but many use it in other domains including industrial sensors, home automation, weather, and process control.

Latest stable version:

  • Grafana v8.5

References

Related Tags

5538 questions
1
vote
1 answer

GCP Cloud Run Logs in Grafana

Is there an easy way to export GCP cloud run logs to Grafana Cloud in anyway? Perhaps with loki or another exporter tool to output to Grafana...or? I can't find any guides which even go over this logging exporting process.
1
vote
1 answer

How to configure https for Grafana on Windows Server 2022?

Pretext: This is my first solution posted on stack overflow, and I hope it is adequatly formed. I did not know of whether posting the solution as an answer to a self-raised question, or to make an article on it. Making it an article seemed to be the…
TMHM
  • 41
  • 5
1
vote
1 answer

Dynamic Recipient using Grafana Slack Contact Point

I have a Grafana question. I have multiple alerts set up based on different services. Each service has its own dedicated slack channel. I want an alert to trigger a slack notification and dynamically have the recipient (slack channel) to be chosen.…
fixnode
  • 97
  • 3
  • 8
  • 32
1
vote
0 answers

Metric name label have prefix is other variable in prometheus

I have a variable : serviceName : label_values(go_info, name) ex: "AAA-deployment" And metric in prometheus looklike: metric_name{pod="AAA-deployment-XXXXX" ,name="k8s_POD_AAA-deployment-XXXX"} If you want filer metric have prefix is a constant…
vuhoanghiep1993
  • 715
  • 1
  • 8
  • 15
1
vote
1 answer

Connect Azure Blob Storage to Grafana

I hope you are well. I have uploaded the excel file into my azure container commonly known as Azure Blob Storage. Let me know if their is an open source connector out there. I will try to catch up with you thanks a lot. Kind Regards, Osama I tried…
1
vote
0 answers

How can I get Grafana to read a custom metric?

Currently my Grafana Dashboard reads system info from the Grafana agent that runs on my machine. I have a script that executes hourly to do some action. If the script executes successfully then it can output that success to an XML file or create a…
1
vote
1 answer

How to format number in a Grafana table?

I'm displaying some data in a Grafana table and one of the columns is a number between 1 and 999999. I want it to be always displayed with six digits, with leading zeros, e.g. 012345. How can I do this? Update: My data source is ElasticSearch.
Antonis Christofides
  • 6,990
  • 2
  • 39
  • 57
1
vote
0 answers

I am getting an error with some datetimes range with loki api query_range

I am checking the loki query_range api with this script: > curl -vv -G -s "http://192.168.1.5:3100/loki/api/v1/query_range" \ > --data-urlencode 'query={job="bot_android"}' \ --data-urlencode 'start=2022-11-01T23:36:13+00:00' \ …
Raul Cejas
  • 399
  • 4
  • 13
1
vote
1 answer

How to effectively monitor HPA stats for Kubernetes PODs

Currently we have a set of microservice hosted on kubernetes cluster. We are setting hpa values based on rough estimates. I am planning to monitor horizontal pod autoscaling behavior using grafana to ensure we are not over/under allocating the…
1
vote
2 answers

Get "https://registry-1.docker.io/v2/": proxyconnect tcp: dial tcp 192.168.65.1:3128

docker run -d --name=grafana -p 3000:3000 grafana/grafana-enterprise:9.2.0 Unable to find image 'grafana/grafana-enterprise:9.2.0' locally docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": proxyconnect tcp: dial tcp…
1
vote
1 answer

Use instances from one prometheus query in another

I'm trying to make a dashboard for disk space forecasting. I've got a prometheus like this: predict_linear( (1-(disk_volume_available_bytes{instance=~"$server"} / disk_volume_total_bytes{instance=~"$server"}))[32d:1d], 864000 ) > 0.95 Which…
Ben Thul
  • 31,080
  • 4
  • 45
  • 68
1
vote
1 answer

Query using multiples operator OR

I need to write a query that use any of the different tag I define, because the historian database supports only this type of where condition. {tag="pressure" OR tag="level" OR tag="prometheus"} Is it possible to write logical binary operators? I…
1
vote
0 answers

Karate gatling grafana integration - is it possible to write raw measurement data into influxDB?

I am a newbie in the Karate Gatling framework and trying to exchange current solution (Newman based) with KarateDSL + InfluxDB + Grafana. What I've noticed, that the measurements data, which is being written in the InfluxDB is already aggregated and…
sergej_m
  • 23
  • 2
1
vote
1 answer

Grafana: How to show only one field in the graph?

I have a Piechart and a bar chart and I'm facing the same issue in both charts. For example, in the bar chart, I have this MySQL query SELECT time AS "time", videoid AS metric, sum(mbytes) AS "mbytes", video_url AS url, video_title as…
Lynob
  • 5,059
  • 15
  • 64
  • 114
1
vote
0 answers

Fluentd Not able to scrape high volume logs

I am trying to Use fluentd to push logs to loki using fluentd-loki plugin. I am not able to make fluentd ingest logs in realtime if the logs exceed 24000 lines/sec. I need help in configuration of fluentd to make it scrape logs fastly and in…