Stats

Use /stats to retrieve daily statistics from V-Blaze.

Gets the comprehensive V‑Blaze engine status information including information on system internals

get
Responses
200
Status information retrieved successfully
get
GET /stats HTTP/1.1
Host: 
Accept: */*

No content

Sample Response

{
    "stats": {
        "idletotal": [60.0,300.0,900.0,916225.595],
        "load.am": [0.0,0.0,0.0],
        "load.lm": [0.0,0.0,0.0],
        "load.stream": [0.0,0.0,0.003],
        "nsubs": [0,0,0,0],
        "stream.audiosecs": [0,0,0,3204034.2],
        "stream.count": [0,0,0,10819],
        "stream.errors": [0,0,0,0],
        "stream.latency": [0,0,0,0.169],
        "stream.rate": [0.0,0.0,0.0,3.457],
        "stream.speed": [0,0,0,299.706],
        "stream.tat": [0,0,0,47.428],
        "stream.tat.max": [0,0,0,133.787],
        "stream.warnings": [0,0,0,0],
        "utilization.am.all": [0.0,0.0,0.0],
        "utilization.am": [0.0,0.0,0.0],
        "utilization.gpu": [0.0,0.0,0.0],
        "utilization.gpu.memory": [0.0,0.0,0.0],
        "utilization.lm": [0.0,0.0,0.0],
        "utilization.stream": [0.0,0.0,0.005],
        "utt.audiosecs": [0,0,0,3035470.61],
        "utt.count": [0,0,0,209908],
        "utt.latency": [0,0,0,0.927],
        "utt.rate": [0.0,0.0,0.0,3.275],
        "utt.speed": [0,0,0,284.02],
        "utt.tat": [0,0,0,40.652],
        "utt.tat.max": [0,0,0,133.552]
    }
}

Explanation

The example response above is a JSON object that shows status information about the V‑Blaze engine. The stats endpoint consists of a number of fields each of which has an array of 3 or 4 elements as a value. Each entry in the array corresponds to the measurement of the statistic during the last 1 minute, 5 minute, 15 minute, and all time windows respectively. Note that statistics with a 3 element array do not have an all time window element.

Refer to Stats for more information on the returned list of values.

Last updated