Add more default intervals and interval signature
Showing
1 changed file
with
8 additions
and
0 deletions
... | @@ -12,6 +12,12 @@ | ... | @@ -12,6 +12,12 @@ |
12 | spans: [{ | 12 | spans: [{ |
13 | interval: 1, | 13 | interval: 1, |
14 | retention: 60 | 14 | retention: 60 |
15 | }, { | ||
16 | interval: 5, | ||
17 | retention: 60 | ||
18 | }, { | ||
19 | interval: 15, | ||
20 | retention: 60 | ||
15 | }] | 21 | }] |
16 | }; | 22 | }; |
17 | 23 | ||
... | @@ -51,6 +57,8 @@ | ... | @@ -51,6 +57,8 @@ |
51 | io.emit('stats', { | 57 | io.emit('stats', { |
52 | os: span.os[span.os.length - 2], | 58 | os: span.os[span.os.length - 2], |
53 | responses: span.responses[span.responses.length - 2], | 59 | responses: span.responses[span.responses.length - 2], |
60 | interval: span.interval, | ||
61 | retention: span.retention | ||
54 | }); | 62 | }); |
55 | }; | 63 | }; |
56 | 64 | ... | ... |
-
Please register or sign in to post a comment