File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 22
33## unreleased
44- Async: Fixed code generator for edge cases at "smartquery" interface. Thanks, @JIAQIA .
5+ - AMG compatibility: Fetch Grafana version from ` /api/frontend/settings `
6+ instead of ` /api/health ` . Thanks, @squadgazzz .
57
68## 4.3.2 (2025-03-04)
79- Alerting: Allowed the datasource to be specified with managed alerting. Thanks, @dmyerscough .
Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ def __init__(self, client):
88
99 async def check (self ):
1010 """
11+ Return Grafana build information, compatible with Grafana, and Amazon Managed Grafana (AMG).
1112
1213 :return:
1314 """
14- path = "/health"
15- return await self .client .GET (path )
15+ path = "/frontend/settings"
16+ response = await self .client .GET (path )
17+ return response .get ("buildInfo" )
Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ def __init__(self, client):
88
99 def check (self ):
1010 """
11+ Return Grafana build information, compatible with Grafana, and Amazon Managed Grafana (AMG).
1112
1213 :return:
1314 """
14- path = "/health"
15- return self .client .GET (path )
15+ path = "/frontend/settings"
16+ response = self .client .GET (path )
17+ return response .get ("buildInfo" )
You can’t perform that action at this time.
0 commit comments