blob: 66bf7482c00ad107668f55e43e1304a5a7f9b44f (
plain)
1
2
3
4
5
6
7
8
|
import _ from 'underscore';
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);
}
|