Hi all,
I am using plugin panel called Grafana Flowcharting which integrate with Draw.io. I decided to use Grafana Flowcharting for my Home Dashboard for monitoring the Server Availability as it can be configured color which indicate the thresholds. Picture as below:
For the PDF configuration, I am using Grafana Reporter using TexLive-PDF. I am having a problem when I wanted to generate PDF for the Flowcharting panel, the result returned error. Picture as below:
I am not sure whether the TexLive is unable to render the image from Flowcharting panel. I have tried generating PDF for another panel which does not have the Flowcharting panel & it’s works fine.
Does anyone know the issue? Really appreciate any helps from you guys.
Thanks,
Farah
Hello Nurulfarahin,
I am also looking for similar thing. I want PDF report for Grafana Dashboard using Grafana Reporter.
docker-compose:
version: “3.2”
services:
monitoring:
image: monitoring
user: “root”
depends_on:
- prometheus
ports:
- “3000:3000”
networks:
- back-tier
- front-tier
restart: “always”
links:
- prometheus:prometheus
volumes:
- type: volume
source: ./grafana/data
target: /var/lib/grafana
- type: volume
source: ./grafana/provisioning
target: /etc/grafana/provisioning/
env_file:
- ./grafana/conf/config.monitoring
grafana-reporter:
container_name: grafana-reporter
image: izakmarais/grafana-reporter:${gr_version:-latest}
command: -ip=100.64.x.x:3000
networks:
- back-tier
ports:
- 8686:8686
restart: always
prometheus:
image: prom/prometheus:latest
user: “root”
volumes:
- ./prometheus/:/etc/prometheus/
- ./prometheus/data:/prometheus
command:
- ‘–config.file=/etc/prometheus/prometheus.yml’
- ‘–storage.tsdb.path=/prometheus’
- ‘–web.console.libraries=/usr/share/prometheus/console_libraries’
- ‘–web.console.templates=/usr/share/prometheus/consoles’
ports:
- 9090:9090
links:
- node-exporter:node-exporter
- cadvisor:cadvisor
error:
page not found
If possible, can you please guide me on this.
Thank you.
Hi mohdzakir,
Have you successfully installed grafana-reporter in your Grafana Dashboard?
Thanks for the reply Nuralfarahin,
I am installing grafana-reporter as a docker container(image).
I am not sure about installing grafana-reporter in Grafana Dashboard.
Whatever the dashboards I have, I want PDF report for it.
Hi @mohdzakir,
Sorry for the late response. Actually I’m new to this. But what I understand is, you must have the application API to send & get response from grafana-reporter.
Here I’m sharing with you the guideline for grafana-reporter configuration. Maybe you can communicate with the committees regarding to this issue.
Regards,
Farahin
Thanks for the tips Nuralfarahin,
Now I can download the reports.
Thank you,
Mohd Zakir.