General:
- Grafana server with dashboards that are to be exported, and datasources in "Server" (proxy) mode.
- User account on Grafana server that has Viewer access to the required dashboards
- This has been tested on Ubuntu 16.04 and a Mac
Packages:
- NodeJS, and the
puppeteer
package (npm install puppeteer
), which is used to run headless Chrome - In Linux, Puppeteer has the following library/tool dependencies (primarily related to
libx11
- see this post). I found that I didn't need extra packages on a Mac.
sudo apt-get install gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
Scripts:
- The grafana_pdf.js file attached here, which carries out the PDF conversion using Puppeteer
Environment: Set the Grafana server URL, username, and password, and the output filename as environment variables.
export GF_DASH_URL="http://localhost:3000/d/x3g4Wx5ik/new-dashboard?kiosk"
export GF_USER=pdf_export
export GF_PASSWORD=StrongPassword1
export OUTPUT_PDF=output.pdf
Now export to PDF by calling the NodeJS script with the corresponding arguments:
node grafana_pdf.js $GF_DASH_URL $GF_USER:$GF_PASSWORD $OUTPUT_PDF
- The focus here is on single-page output. Getting "tall" dashboards to paginate nicely is an altogether separate endeavor.
- In its present form, the script adjusts the PDF and aspect ratio to fit the dashboard, with no regard for fitting on an actual page. It's also possible to get the output to be Letter or A4 sized - see comments in the code on how to achieve that; if the intent is to print, you'll probably also want to add a margin (TODO: Add a switch in the code)
- When you have a single
pdf_export
user that is a member of multiple organizations, if you try to exporting dashboards belonging to different organizations one after the other, you will occasionally get a "login" screen instead of a dashboard during the org switch. When that happens, I found that simply retrying does the trick.
Attached below are two example output PDFs (bigdashboard_output.pdf and output_energy.pdf). The former is based on https://play.grafana.org/d/000000003/big-dashboard, and the latter is from our own energy monitoring project (www.ammp.io).
Hi guys, we are using this application with docker and we adjusted it to use apikey and not user:password anymore, it works very well, but we have two problems.
I'm trying to generate a pdf of a dashboard that has an option to choose a kubernetes node to see the graphs of those specific nodes, I saw that the pdf generated by calling the url of the dashboard takes the default value of the nodes option (and I can't use the "all" option). I thought of doing a "for" lace with the nodes name and using this array to collect from this dashboard a pdf of all nodes in different pdf files, is there any other way to do this?
Some dashboards that I need to generate a pdf do not have the chart (panels) visible, I have to expand the chart (panel) manually to be able to see the values, can I use any parameter to expand the visualization of the charts (panels) before generating the pdf? I can't edit the dashboard because it's in a kubernetes and doesn't accept edits.
An observation, I needed to use a time range to generate my reports, I managed to do this by passing a parameter in the URL, if someone needs to do that too, I managed it this way.
This is my problem:

Sorry for my bad english! Thank you!