Spot 정보 조회
모든 정보 조회
GET https://api.whatap.io/open/api/json/spot
command
curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/json/spot"
response
{
"pcode": 8,
"act_agent": "6",
"inact_agent": "6",
"host": "1",
"cpucore": "2",
"txcount": "459",
"tps": "93.07",
"user": "1007",
"actx": "149",
"rtime": "1873",
"cpu": "29.35",
"threadpool_active": "0",
"threadpool_queue": "0",
"dbconn_total": "600.0",
"dbconn_act": "239.0",
"dbconn_idle": "361.0",
"act_method": "51",
"act_sql": "24",
"act_httpc": "64",
"act_dbc": "10",
"act_socket": "0",
"apdex": "0.9871"
}
Response Field | Field Type | 설명 |
---|---|---|
pcode | number | 조회한 프로젝트 코드 |
act_agent | string | 활성화 상태의 에이전트 수 |
inact_agent | string | 비활성화 상태의 에이전트 수 |
host | string | 호스트(HOST) 수 |
cpucore | string | 호스트의 CPU 코어 합 |
txcount | string | 트랜잭션 개수 |
tps | string | TPS |
user | string | 액티브 사용자(5분) |
actx | string | 액티브 트랜잭션 |
rtime | string | 평균 응답시간 |
cpu | string | 평균 CPU 사용률 |
threadpool_active | string | 스레드풀 활성 스레드 수 |
threadpool_queue | string | 스레드풀 큐잉 스레드 수 |
dbconn_total | string | 전체 DB Connection 수 |
dbconn_act | string | 활성(Active) DB Connection 수 |
dbconn_idle | string | 비활성(Idle) DB Connection 수 |
act_method | string | 액티브 Method 수 |
act_sql | string | 액티브 SQL 수 |
act_httpc | string | 액티브 HTTP Call 수 |
act_dbc | string | 액티브 DB Connection 수 |
act_socket | string | 액티브 Socket 수 |
apdex | string | Apdex(Application Performance Index, 애플리케이션의 사용자 만족도) |
활성화 상태의 에이전트 수
GET https://api.whatap.io/open/api/act_agent
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/act_agent"
response
5 // 활성화 에이전트 개수
비활성화 상태의 에이전트 수
GET https://api.whatap.io/open/api/inact_agent
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/inact_agent"
response
1 // 비활성화 에이전트 개수
호스트(HOST) 수
GET https://api.whatap.io/open/api/host
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/host"
response
2 // HOST 개수
호스트의 CPU 코어 합
GET https://api.whatap.io/open/api/cpucore
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/cpucore"
response
16 // CPU 코어 개수
트랜잭션 개수
GET https://api.whatap.io/open/api/txcount
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/txcount"
response
469 // 트랜잭션 개수
TPS
GET https://api.whatap.io/open/api/tps
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/tps"
response
92.03 // 초당 처리된 트랜잭션 건수(Transaction per second, TPS)
액티브 사용자(5분)
GET https://api.whatap.io/open/api/user
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/user"
response
1007 // 5분 동안 실시간 사용자 수
노트
와탭은 최근 5분 이내에 트랜잭션을 일으킨 사용자를 카운팅해 동시 접속 사용자를 측정합니다.
액티브 트랜잭션
GET https://api.whatap.io/open/api/actx
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/actx"
response
171 // 액티브 트랜잭션 개수
평균 응답시간
GET https://api.whatap.io/open/api/rtime
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/rtime"
response
1644 // 평균 응답시간
평균 CPU 사용률
GET https://api.whatap.io/open/api/cpu
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/cpu"
response
9.26 // 평균 CPU 사용률
Apdex
GET https://api.whatap.io/open/api/apdex
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/api/apdex"
response
0.9871
활성/비활성화 상태의 에이전트 정보
GET https://api.whatap.io/open/json/agents
command
$ curl -L -w "\n" -H "x-whatap-token: {{PROJECT API TOKEN}}" -H "x-whatap-pcode: {{projectCode}}" "https://api.whatap.io/open/json/agents"
response
{
"data": [
{
"host_ip": "127.0.0.1",
"oname": "TC-0-1-8087",
"active": true
},
{
"host_ip": "127.0.0.1",
"oname": "TC-0-1-8086",
"active": true
}
]
}
Response Field | Field Type | 설명 |
---|---|---|
host_ip | string | 에이전트가 위치한 host 의 ip 주소 |
oname | string | 에이전트 명 |
active | boolean | 에이전트 활성화 여부 (활성화 : true , 비활성화 : false ) |