get_data
Get statistics and histogram for each interval analyzerWhile event statistics show the count and interval statistics of the acquisition period. The histogram is a collection of time measurements.
Parameters
number
How long to wait for data to be acquired
default: 60
boolean
Disable all implicit conversions and coercions.
default: true
# Examples
# Sample response
{
"interval1":{
"histogram":{
"data":[
...
],
"dt":...,
"t0":...
},
"statistics":{
"count":...,
"current":...,
"maximum":...,
"mean":...,
"minimum":...
}
},
"interval2":{
"histogram":{
"data":[
...
],
"dt":...
"t0":...
},
"statistics":{
"count":...,
"current":...,
"maximum":...,
"mean":...,
"minimum":...
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34