Documentation Index
Fetch the curated documentation index at: https://grafana_com_website/llms.txt
Fetch the complete documentation index at: https://grafana_com_website/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: /docs/grafana-cloud/as-code/observability-as-code/git-sync/scenarios/multi-region.md (append .md) or send Accept: text/markdown to /docs/grafana-cloud/as-code/observability-as-code/git-sync/scenarios/multi-region/. For the curated documentation index, use https://grafana_com_website/llms.txt. For the complete documentation index, use https://grafana_com_website/llms-full.txt.
Git Sync with regional replication
Deploy multiple Grafana instances across regions. Synchronize them with the same Git location to ensure consistent dashboards everywhere.
Use it for
- Geographic distribution: You deploy Grafana close to users in different regions.
- Latency reduction: Users need fast dashboard access from their location.
- Data sovereignty: You keep dashboard data in specific regions.
- High availability: You need dashboard availability across regions.
- Consistent experience: All users see the same dashboards regardless of region.
Architecture
┌─────────────────────────────────────────────────────┐
│ GitHub Repository │
│ Repository: your-org/grafana-manifests │
│ Branch: main │
│ │
│ grafana-manifests/ │
│ └── shared/ │
│ ├── dashboard-global.json │
│ ├── dashboard-metrics.json │
│ └── dashboard-logs.json │
└─────────────────────────────────────────────────────┘
↕ ↕
Git Sync (shared/) Git Sync (shared/)
↕ ↕
┌────────────────────┐ ┌────────────────────┐
│ US Region │ │ EU Region │
│ Grafana │ │ Grafana │
│ │ │ │
│ Repository: │ │ Repository: │
│ - path: shared/ │ │ - path: shared/ │
└────────────────────┘ └────────────────────┘Repository structure
In Git:
your-org/grafana-manifests
└── shared/
├── dashboard-global.json
├── dashboard-metrics.json
└── dashboard-logs.jsonIn Grafana Dashboards view (all regions):
Dashboards
└── 📁 grafana-manifests/
├── Global Dashboard
├── Metrics Dashboard
└── Logs Dashboard- All regional instances (US, EU, etc.) show identical folder structure
- Same folder name “grafana-manifests” in every region
- Same dashboards synced from the
shared/path appear everywhere - Users in any region see the exact same dashboards with the same titles
Configuration parameters
All regions:
- Repository:
your-org/grafana-manifests - Branch:
main - Path:
shared/
How it works
- All regional instances pull dashboards from
shared/. - Any region’s change commits to Git.
- Other regions pull updates during the next sync (or via webhooks).
- Changes propagate across regions per sync interval.
Considerations
- Write conflicts: If users in different regions modify the same dashboard simultaneously, Git uses last-write-wins.
- Primary region: Consider designating one region as the primary location for making dashboard changes.
- Propagation time: Changes propagate to all regions within the configured sync interval, or instantly if webhooks are configured.
- Network reliability: Ensure all regions have reliable connectivity to the Git repository.
Was this page helpful?
Related resources from Grafana Labs


