Skip to content

Commit 4c539b5

Browse files
committed
automated release 1.0.4
1 parent a1929d5 commit 4c539b5

File tree

1 file changed

+118
-0
lines changed

1 file changed

+118
-0
lines changed

dist/plugin.json

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
{
2+
"category": "tsdb",
3+
"$schema": "https://raw.githubusercontent.com/grafana/grafana/main/docs/sources/developers/plugins/plugin.schema.json",
4+
"type": "datasource",
5+
"name": "Amazon Managed Service for Prometheus",
6+
"id": "grafana-amazonprometheus-datasource",
7+
"executable": "gpx_amazonprometheus",
8+
"routes": [
9+
{
10+
"method": "POST",
11+
"path": "api/v1/query",
12+
"reqRole": "Viewer"
13+
},
14+
{
15+
"method": "POST",
16+
"path": "api/v1/query_range",
17+
"reqRole": "Viewer"
18+
},
19+
{
20+
"method": "POST",
21+
"path": "api/v1/series",
22+
"reqRole": "Viewer"
23+
},
24+
{
25+
"method": "POST",
26+
"path": "api/v1/labels",
27+
"reqRole": "Viewer"
28+
},
29+
{
30+
"method": "POST",
31+
"path": "api/v1/query_exemplars",
32+
"reqRole": "Viewer"
33+
},
34+
{
35+
"method": "GET",
36+
"path": "/rules",
37+
"reqRole": "Viewer"
38+
},
39+
{
40+
"method": "POST",
41+
"path": "/rules",
42+
"reqRole": "Editor"
43+
},
44+
{
45+
"method": "DELETE",
46+
"path": "/rules",
47+
"reqRole": "Editor"
48+
},
49+
{
50+
"method": "DELETE",
51+
"path": "/config/v1/rules",
52+
"reqRole": "Editor"
53+
},
54+
{
55+
"method": "POST",
56+
"path": "/config/v1/rules",
57+
"reqRole": "Editor"
58+
}
59+
],
60+
"includes": [
61+
{
62+
"type": "dashboard",
63+
"name": "Prometheus Stats",
64+
"path": "dashboards/prometheus_stats.json"
65+
},
66+
{
67+
"type": "dashboard",
68+
"name": "Prometheus 2.0 Stats",
69+
"path": "dashboards/prometheus_2_stats.json"
70+
},
71+
{
72+
"type": "dashboard",
73+
"name": "Grafana Stats",
74+
"path": "dashboards/grafana_stats.json"
75+
}
76+
],
77+
"metrics": true,
78+
"alerting": true,
79+
"annotations": true,
80+
"backend": true,
81+
"queryOptions": {
82+
"minInterval": true
83+
},
84+
"info": {
85+
"version": "1.0.4",
86+
"updated": "2024-12-16",
87+
"keywords": [
88+
"datasource",
89+
"aws",
90+
"amazon",
91+
"prometheus",
92+
"cloud provider",
93+
"database",
94+
"metrics",
95+
"time series"
96+
],
97+
"description": "Open source time series database & alerting",
98+
"author": {
99+
"name": "Grafana Labs",
100+
"url": "https://grafana.com"
101+
},
102+
"logos": {
103+
"small": "img/prometheus_logo.svg",
104+
"large": "img/prometheus_logo.svg"
105+
},
106+
"links": [
107+
{
108+
"name": "Learn more",
109+
"url": "https://aws.amazon.com/prometheus/"
110+
}
111+
]
112+
},
113+
"dependencies": {
114+
"grafanaDependency": ">=11.0.0",
115+
"plugins": []
116+
},
117+
"buildMode": "production"
118+
}

0 commit comments

Comments
 (0)