데이터베이스
MySQL
Metric | Description |
---|---|
Innodb Buffer Pool Read Requests |
논리 read 요청 횟수 |
Innodb Buffer Pool Reads |
물리적 read를 한 횟수 |
Threads Connected |
현재 접속되어 있는 세션 수 |
Threads Running |
쿼리를 실행 중인 세션 수 |
Questions |
실행된 query의 수 |
Com Select |
Select 명령을 실행한 횟수 |
Writes |
write에 사용한 명령 횟수 |
Bytes Received |
db 서버가 받은 데이터 bytes |
Bytes Sent |
db 서버가 보낸 데이터 bytes |
Innodb Row Lock Current Waits |
Lock의 수 |
Connections |
DB에 접속 시도 횟수 |
Com Commit |
commit 횟수 |
Com Rollback |
rollback 횟수 |
Innodb Rows Read |
select에서 처리된 row 수 |
Innodb Rows Writes |
write에서 처리된 row 수 |
Innodb Row Lock Waits |
row lock wait 한 수 |
Innodb Row Lock Time |
row lock wait 한 시간 |
Sort Rows |
sort 처리한 row 수 |
PostgreSQL
Metric | Description |
---|---|
Active Sessions |
쿼리를 실행 중인 세션 수 |
Deadlock Count |
감지 된 deadlock의 수 |
Commit Count |
커밋 된 트랜잭션의 수 |
Rollback Count |
롤백 된 트랜잭션의 수 |
DML Count |
DML(insert, update, delete) 수행 횟수 |
BLKS Read |
읽은 디스크 블록 수 (Physical read) |
BLKS Hit |
디스크 블록 캐시 히트 수(디스크 블록이 이미 버퍼 캐시에 있어서 읽기가 필요하지 않은 횟수. Logical read) |
BLKS Hit Ratio |
blks hit(캐시 히트)와 blks read(디스크 읽은 횟수)의 비율 |
Check Point |
checkpoint 가 수행된 횟수 |
Total Sessions |
모든 세션 수 |
Total Runtime |
active session 들의 실행 시간 합 |
Long Running Sessions |
실행 시간이 긴 세션 수 |
Lock Wait Sessions |
lock 을 wait 하는 세션 수 |
Table Hit Ratio |
테이블의 blks hit(캐시 히트)와 blks read(디스크 읽은 횟수)의 비율 |
Index Hit Ratio |
인덱스의 blks hit(캐시 히트)와 blks read(디스크 읽은 횟수)의 비율 |
Vacuum Running Count |
vacuum 이 실행된 횟수 |
Oracle
Metric | Description |
---|---|
CPU |
db의 cpu 사용률 |
Active Sessions |
쿼리를 실행 중인 세션 수 |
Total Sessions |
모든 세션 수 |
Lock Wait Sessions |
lock 을 wait 하는 세션 수 |
Session Logical Reads |
데이터를 buffer cache 내에서 읽은 횟수 |
Physical Reads |
데이터를 물리적인 disk에서 읽은 횟수 |
Execute Count |
sql의 실행 수 |
Opened Cursors Current |
현재 열려 있는 cursor의 수 |
Parse Count (hard) |
hard parse 횟수 |
Parse Count (total) |
전체 parse 횟수(hard + soft) |
Enqueue Waits |
enqueue 대기 횟수 |
Logons Current |
현재 logon 되어 있는 수 |
User Commits |
commit 실행 횟수 |
CPU used by this session |
session에 의해 사용된 cpu time의 합 |
DB Time |
db 사용에 소요된 시간 합 |
Physical Writes |
데이터를 disk에 기록한 횟수 |
Sorts (memory) |
memory에서 disk에 기록하는 중 sort한 시간 비율 |
DB File Sequential Read |
서비스 시간 중 쓰기를 위해 wait 하는 비율(Single-block reads) |
DB File Scattered Read |
서비스 시간 중 쓰기를 위해 wait 하는 비율(Multi-block reads) |
Wait Sessions |
event 를 wait 하는 세션 수 |
Txn Sessions |
transaction이 있는 세션 수 |
Long Running Sessions |
lock을 wait 하는 세션 수 |