summaryrefslogtreecommitdiff
path: root/spec/frontend/prometheus_metrics/mock_data.js
blob: d553253730287171d596aa87540c680d20c3d20a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const metrics = [
  {
    edit_path: '/root/prometheus-test/prometheus/metrics/3/edit',
    id: 3,
    title: 'Requests',
    group: 'Business',
  },
  {
    edit_path: '/root/prometheus-test/prometheus/metrics/2/edit',
    id: 2,
    title: 'Sales by the hour',
    group: 'Business',
  },
  {
    edit_path: '/root/prometheus-test/prometheus/metrics/1/edit',
    id: 1,
    title: 'Requests',
    group: 'Business',
  },
];

export default metrics;