-
Notifications
You must be signed in to change notification settings - Fork 0
[refactor(infra)] Restructure Grafana dashboards and harden production compose #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
fa4f435
feat: enhance telemetry with Prometheus metrics and improve API key v…
nxdun 8f220b1
Chore: make Terraform variable modifications to match current impleme…
nxdun 670a750
feat: add new grafana dashboard configuration Scripts
nxdun d407487
feat: update docker-compose and cloud-init for new Grafana dashboards
nxdun a279223
feat: add header -Server directive to Caddyfile and cloud-init templa…
nxdun ca0066b
Merge branch 'main' into nadun/promo-grafa-enchance
nxdun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
infra/common/grafana/provisioning/dashboards/api-health.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| { | ||
| "title": "API & System Health", | ||
| "uid": "api-health", | ||
| "timezone": "browser", | ||
| "refresh": "5s", | ||
| "panels": [ | ||
| { | ||
| "title": "Global Traffic (RPS)", | ||
| "type": "timeseries", | ||
| "gridPos": { "h": 8, "w": 12, "x": 0, "y": 0 }, | ||
| "datasource": "Prometheus", | ||
| "targets": [ | ||
| { | ||
| "expr": "sum by (status) (rate(http_requests_total[1m]))", | ||
| "legendFormat": "{{status}}" | ||
| } | ||
| ], | ||
| "options": { | ||
| "tooltip": { "mode": "multi" } | ||
| }, | ||
| "fieldConfig": { | ||
| "defaults": { | ||
| "custom": { "stacking": { "mode": "normal", "group": "A" } } | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "title": "Latency Percentiles", | ||
| "type": "timeseries", | ||
| "gridPos": { "h": 8, "w": 12, "x": 12, "y": 0 }, | ||
| "datasource": "Prometheus", | ||
| "targets": [ | ||
| { | ||
| "expr": "histogram_quantile(0.99, sum by (le) (rate(http_request_duration_seconds_bucket[5m])))", | ||
| "legendFormat": "P99" | ||
| }, | ||
| { | ||
| "expr": "histogram_quantile(0.95, sum by (le) (rate(http_request_duration_seconds_bucket[5m])))", | ||
| "legendFormat": "P95" | ||
| }, | ||
| { | ||
| "expr": "histogram_quantile(0.50, sum by (le) (rate(http_request_duration_seconds_bucket[5m])))", | ||
| "legendFormat": "P50" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "title": "Traffic by Route", | ||
| "type": "piechart", | ||
| "gridPos": { "h": 8, "w": 12, "x": 0, "y": 8 }, | ||
| "datasource": "Prometheus", | ||
| "targets": [ | ||
| { | ||
| "expr": "sum by (path) (increase(http_requests_total[1h]))", | ||
| "legendFormat": "{{path}}" | ||
| } | ||
| ], | ||
| "options": { | ||
| "pieType": "donut" | ||
| } | ||
| }, | ||
| { | ||
| "title": "Error Rate (%)", | ||
| "type": "stat", | ||
| "gridPos": { "h": 8, "w": 12, "x": 12, "y": 8 }, | ||
| "datasource": "Prometheus", | ||
| "targets": [ | ||
| { | ||
| "expr": "sum(rate(http_requests_total{status=~\"5..\"}[5m])) / sum(rate(http_requests_total[5m])) * 100", | ||
| "legendFormat": "5xx Error Rate" | ||
| } | ||
| ], | ||
| "fieldConfig": { | ||
| "defaults": { | ||
| "unit": "percent", | ||
| "thresholds": { | ||
| "mode": "absolute", | ||
| "steps": [ | ||
| { "color": "green", "value": null }, | ||
| { "color": "orange", "value": 1 }, | ||
| { "color": "red", "value": 5 } | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| } | ||
| ] | ||
| } |
172 changes: 0 additions & 172 deletions
172
infra/common/grafana/provisioning/dashboards/captcha-security.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.