GetNetworkUtilizationByPod
CCS-site-0042 Get network utilization of a pod
Path Parameters
- site_id integer required
Site ID
Query Parameters
- pod_name string required
Pod name
- meter_name string required
Possible values: [
network_incoming_bytes_rate
,network_outgoing_bytes_rate
]Query meter name
- begin_time string
Default is two hours before end time.
- end_time string
Get the util before the end time. Default is now.
Header Parameters
- x-api-host string required
Default value:
k8s-D-twcc
Authentication Required Parameters
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- network_read_bytes_rate
- network_write_bytes_rate
Schema
- Array [
- network_incoming_bytes_rate string
- timestamp date-time
- unit string
- ]
[
{
"network_incoming_bytes_rate": "string",
"timestamp": "2024-08-19",
"unit": "string"
}
]
network read bytes rate
[
{
"network_incoming_bytes_rate": "589.1",
"timestamp": "2018-09-25T09:55:00Z",
"unit": "B/s"
}
]
network write bytes rate
[
{
"network_outgoing_bytes_rate": "112.4",
"timestamp": "2018-09-25T09:55:00Z",
"unit": "B/s"
}
]
Loading...