We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d68173 commit 4253df9Copy full SHA for 4253df9
1 file changed
src/static/js/graphs.js
@@ -12,7 +12,7 @@ function fetchDataAndRenderCharts() {
12
console.log('Stored Filter Value:', storedFilterValue);
13
14
// Fetch data with the selected time filter
15
- fetch(`/api/v3/prometheus/graphs_data?filter=${storedFilterValue}`)
+ fetch(`/api/v1/prometheus/graphs_data?filter=${storedFilterValue}`)
16
.then(response => response.json())
17
.then(data => {
18
const cpuData = data.cpu;
0 commit comments