Vai al contenuto principale
GET
/
v1
/
monitoring
/
dashboard
/
throughput
Ottieni Throughput di Rete
curl --request GET \
  --url https://api.altostrat.io/v1/monitoring/dashboard/throughput \
  --header 'Authorization: Bearer <token>'
[
  {
    "time_slot": "2025-10-29 10:00:00",
    "average_in_bps": 12500000.5,
    "average_out_bps": 2350000.75,
    "total_average_throughput_bps": 14850001.25
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

start_time
string<date-time>

L'inizio dell'intervallo di tempo in formato ISO 8601 (YYYY-MM-DDTHH:MM:SS). Il valore predefinito è 4 ore fa.

Example:

"2025-10-29T08:00:00"

end_time
string<date-time>

La fine dell'intervallo di tempo in formato ISO 8601 (YYYY-MM-DDTHH:MM:SS). Il valore predefinito è l'ora corrente.

Example:

"2025-10-29T12:00:00"

bucket_interval_minutes
integer
default:5

L'intervallo di tempo in minuti per l'aggregazione dei punti dati.

Example:

15

site_ids[]
string<uuid>[]

Un array di UUID di Sito per filtrare i risultati. Se omesso, verranno aggregati i dati di tutti i siti accessibili.

Response

Un elenco di punti dati di throughput aggregati in intervalli di tempo.

time_slot
string<date-time>

L'ora di inizio dell'intervallo di aggregazione.

Example:

"2025-10-29 10:00:00"

average_in_bps
number

Il throughput medio in entrata in bit al secondo per questo intervallo di tempo.

Example:

12500000.5

average_out_bps
number

Il throughput medio in uscita in bit al secondo per questo intervallo di tempo.

Example:

2350000.75

total_average_throughput_bps
number

Il throughput medio combinato in bit al secondo.

Example:

14850001.25