How to install Garmin Grafana on Synology NAS? #107
Answered
by
arpanghosh8453
arpanghosh8453
asked this question in
Q&A
-
Garmin-Grafana Installation Guide on Synology NASThis guide walks you through installing the Garmin Grafana dashboard on your Synology NAS Prerequisites
Step-by-Step Installation1. Install Git Server
2. Enable SSH and Connect
3. Create a Project Directorysudo mkdir -p /volume1/docker/garmingrafana
cd /volume1/docker/garmingrafana 4. Clone the Garmin Grafana Reposudo git clone https://github.com/arpanghosh8453/garmin-grafana.git
cd garmin-grafana 5. Setup Token Storagesudo mkdir garminconnect-tokens
sudo chown -R 1000:1000 garminconnect-tokens 6. Rename Docker Compose FileRename compose file using SSH command OR
7. Interactive Garmin Login (for 2FA users)sudo docker pull thisisarpanghosh/garmin-fetch-data:latest
sudo docker-compose run --rm garmin-fetch-data
8. Fix Dashboard Data Source Referencesudo sed -i 's/\${DS_GARMIN_STATS}/garmin_influxdb/g' Grafana_Dashboard/Garmin-Grafana-Dashboard.json 9. Start the Servicessudo docker-compose up -d
sudo docker-compose logs --follow 10. Optional: Pull Historical Garmin DataTo sync data for a custom date range (e.g., last year): cd /volume1/docker/garmingrafana/garmin-grafana
sudo docker-compose run --rm \
-e MANUAL_START_DATE=2024-01-01 \
-e MANUAL_END_DATE=2024-12-31 \
garmin-fetch-data Accessing the Dashboard
Notes & Tips
|
Beta Was this translation helpful? Give feedback.
Answered by
arpanghosh8453
May 14, 2025
Replies: 1 comment 9 replies
-
The question is the Answer :) |
Beta Was this translation helpful? Give feedback.
9 replies
Answer selected by
arpanghosh8453
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The question is the Answer :)