logs.mocks.ts22 lines · main
1export const LOGS_API_MOCKS = {
2 result: [
3 {
4 id: 'uuid',
5 event_message: 'foobar',
6 timestamp: 1298085933,
7 error_count: 1,
8 warning_count: 2,
9 ok_count: 3,
10 count: 2,
11 },
12 {
13 id: 'uuid2',
14 event_message: 'foobar',
15 timestamp: 1298085933,
16 error_count: 1,
17 warning_count: 2,
18 ok_count: 3,
19 count: 2,
20 },
21 ],
22}