mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Plugins: Remove deprecated /api/tsdb/query metrics endpoint (#49916)
* remove /api/tsdb/query * revert changes to alert rules * regenerate spec based on 9.0.x
This commit is contained in:
@@ -57,7 +57,7 @@ export default (data) => {
|
||||
requests.push({ method: 'GET', url: '/api/annotations?from=1580825186534&to=1580846786535' });
|
||||
|
||||
for (let n = 0; n < batchCount; n++) {
|
||||
requests.push({ method: 'POST', url: '/api/tsdb/query', body: payload });
|
||||
requests.push({ method: 'POST', url: '/api/ds/query', body: payload });
|
||||
}
|
||||
|
||||
let responses = client.batch(requests);
|
||||
|
||||
@@ -62,7 +62,7 @@ export default (data) => {
|
||||
requests.push({ method: 'GET', url: '/api/annotations?dashboardId=2074&from=1548078832772&to=1548082432772' });
|
||||
|
||||
for (let n = 0; n < batchCount; n++) {
|
||||
requests.push({ method: 'POST', url: '/api/tsdb/query', body: payload });
|
||||
requests.push({ method: 'POST', url: '/api/ds/query', body: payload });
|
||||
}
|
||||
|
||||
let responses = client.batch(requests);
|
||||
|
||||
@@ -59,7 +59,7 @@ export default (data) => {
|
||||
requests.push({ method: 'GET', url: '/api/annotations?dashboardId=2074&from=1548078832772&to=1548082432772' });
|
||||
|
||||
for (let n = 0; n < batchCount; n++) {
|
||||
requests.push({ method: 'POST', url: '/api/tsdb/query', body: payload });
|
||||
requests.push({ method: 'POST', url: '/api/ds/query', body: payload });
|
||||
}
|
||||
|
||||
let responses = client.batch(requests);
|
||||
|
||||
@@ -58,7 +58,7 @@ export default (data) => {
|
||||
requests.push({ method: 'GET', url: '/api/annotations?dashboardId=2074&from=1548078832772&to=1548082432772' });
|
||||
|
||||
for (let n = 0; n < batchCount; n++) {
|
||||
requests.push({ method: 'POST', url: '/api/tsdb/query', body: payload });
|
||||
requests.push({ method: 'POST', url: '/api/ds/query', body: payload });
|
||||
}
|
||||
|
||||
let responses = client.batch(requests);
|
||||
|
||||
Reference in New Issue
Block a user