summaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/api/metrics.js
blob: 20af5bf0380ba4abe900299ad2e6bffc60914ed5 (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: 500 };
  return getJSON(url, data).then(r => r.metrics);
}