GET

웹 컨테이너 메트릭 조회

/meters/web/container/{hostName}

웹 컨테이너의 메트릭을 호스트명 기준으로 조회합니다.

GET /meters/web/container/{hostName}

웹 컨테이너의 메트릭을 호스트명 기준으로 조회합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
hostNamestringYes호스트명 (Path)
keystringYesAPI 인증 키

Response

200 OK

{
  "hostName": "web-container-01",
  "connections": 85,
  "requestsPerSec": 120.5,
  "bytesIn": 20480,
  "bytesOut": 102400
}

401 Unauthorized

{
  "error": "Unauthorized",
  "code": "UNAUTHORIZED"
}

Example

curl "https://{{manager-host}}:{{port}}/meters/web/container/{hostName}?key=YOUR_API_KEY"