blob: 9bb7cfb67ca93246f80777146313cca9d54cf44b (
plain)
1
2
3
4
5
6
7
|
import { getJSON } from '../helpers/request.js';
export function getMetrics () {
let url = baseUrl + '/api/metrics/search';
let data = { ps: 9999 };
return getJSON(url, data).then(r => r.metrics);
}
|