get_data

Get statistics and histogram for each interval analyzer

While 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": [0.0, 0.0, "..."],
            "dt": 1.024e-07,
            "t0": 5.12e-08
        },
        "statistics": {
            "count": 0.0,
            "current": null,
            "maximum": null,
            "mean": null,
            "minimum": null,
            "std._deviation": null
        }
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17