Compare commits

..

3 Commits

Author SHA1 Message Date
deployer3000 f5b92715ef Merge pull request 'rc' (#22) from rc into main 2025-03-19 17:01:39 +03:00
YurijO 67f776efe3 Merge pull request 'Обновить src/Charts/PrometheusChart.jsx' (#21) from refactoring into rc
test-org/trust-module-frontend/pipeline/pr-main Build succeeded
Reviewed-on: http://192.168.2.61/deployer3000/trust-module-frontend/pulls/21
2025-03-19 16:58:06 +03:00
DmitriyA 372a53d4cb Обновить src/Charts/PrometheusChart.jsx
test-org/trust-module-frontend/pipeline/pr-rc This commit looks good Details
2025-03-19 16:36:23 +03:00
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ const PrometheusChart = ({ metricName }) => {
else if (range <= 86400) step = 120; else if (range <= 86400) step = 120;
else step = 300; else step = 300;
const response = await axios.get('http://192.168.2.39:3000/metrics', { const response = await axios.get('https://192.168.2.43:3000/metrics', {
params: { metric: metricName, start, end, step }, params: { metric: metricName, start, end, step },
}); });