GET api_v2/CsPerformanceCounters/GetPerformanceValue?cloudServiceId={cloudServiceId}&performanceCounterId={performanceCounterId}&dateTimeFrom={dateTimeFrom}&dateTimeTo={dateTimeTo}&accountUserId={accountUserId}
Получите значение производительности
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
cloudServiceId | ИД облачного сервиса |
Define this parameter in the request URI. |
performanceCounterId | ИД счетчика производительности |
Define this parameter in the request URI. |
dateTimeFrom | Дата начала фиксации |
Define this parameter in the request URI. |
dateTimeTo | Дата конца фиксации |
Define this parameter in the request URI. |
accountUserId | ИД пользователя аккаунта |
Define this parameter in the request URI. |
Response Information
Значение производительности
Response body formats
application/xml, text/xml
Sample:
<Result> <CSPerformanceCountersTable Type="sample string 1"> <Row> <PerformanceCounterValue>1.1</PerformanceCounterValue> <FixationDateTime>2022-06-27T21:32:55.3605822+03:00</FixationDateTime> </Row> <Row> <PerformanceCounterValue>1.1</PerformanceCounterValue> <FixationDateTime>2022-06-27T21:32:55.3605822+03:00</FixationDateTime> </Row> <Row> <PerformanceCounterValue>1.1</PerformanceCounterValue> <FixationDateTime>2022-06-27T21:32:55.3605822+03:00</FixationDateTime> </Row> </CSPerformanceCountersTable> </Result>
application/json, text/json
Sample:
{ "CSPerformanceCountersTable": { "Rows": [ { "PerformanceCounterValue": 1.1, "FixationDateTime": "2022-06-27T21:32:55.3605822+03:00" }, { "PerformanceCounterValue": 1.1, "FixationDateTime": "2022-06-27T21:32:55.3605822+03:00" }, { "PerformanceCounterValue": 1.1, "FixationDateTime": "2022-06-27T21:32:55.3605822+03:00" } ] } }