Skip to content

Commit 9db4e59

Browse files
fix(grafana): drop the Releases panel from the home dashboard to end the CORS proxy dependency
The News panel fetched the tags Atom feed through the shared public CORS proxy api.cors.lol, which is rate-limited and returns HTTP 429, so the panel showed an RSS loading error. This is the second proxy to fail this way after corsproxy.io (#5143): every TeslaMate instance worldwide shares one free-tier quota, so swapping in a third proxy would reproduce the same failure. Hosting the feed ourselves would be the only reliable alternative, but the panel is two grid columns wide and the information is already surfaced server-side and CORS-free by TeslaMate.Updater in the web UI. Remove the panel and widen the adjacent image panel from 16 to 18 columns to keep the row at 24. Closes #5542
1 parent 2e6c448 commit 9db4e59

2 files changed

Lines changed: 2 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
#### Dashboards
7373

7474
- feat(grafana): make data health summary actionable (#5526 - @magrathean-uk)
75+
- fix(grafana): drop the Releases panel from the home dashboard to end the CORS proxy dependency (#5548 - @JakobLichterfeld)
7576

7677
#### Translations
7778

grafana/dashboards/internal/home.json

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
{
4848
"gridPos": {
4949
"h": 20,
50-
"w": 16,
50+
"w": 18,
5151
"x": 6,
5252
"y": 0
5353
},
@@ -63,22 +63,6 @@
6363
},
6464
"pluginVersion": "13.0.1+security-01",
6565
"type": "text"
66-
},
67-
{
68-
"gridPos": {
69-
"h": 20,
70-
"w": 2,
71-
"x": 22,
72-
"y": 0
73-
},
74-
"id": 3,
75-
"options": {
76-
"feedUrl": "https://api.cors.lol/?url=https://github.com/teslamate-org/teslamate/tags.atom",
77-
"showImage": false
78-
},
79-
"pluginVersion": "13.0.1+security-01",
80-
"title": "Releases",
81-
"type": "news"
8266
}
8367
],
8468
"preload": false,

0 commit comments

Comments
 (0)