Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[시각화][그라파나] 현재 disk 용량 확인 관련 json #33

Open
KangWooJin opened this issue Sep 9, 2018 · 4 comments
Open

Comments

@KangWooJin
Copy link

KangWooJin commented Sep 9, 2018

@iipeace 님 현재 dist 용량 관련해서 json을 report가 없는 것 같은데 어디 부분을 확인하면 좋은지 알려주시면 감사하겠습니다.

@iipeace
Copy link
Collaborator

iipeace commented Sep 10, 2018

네, 현재 제공되지 않는데 추가하겠습니다 :)

@pyotel pyotel changed the title [시각화][그라파나] 현재 dist 용량 확인 관련 json [시각화][그라파나] 현재 disk 용량 확인 관련 json Sep 10, 2018
@pyotel
Copy link

pyotel commented Sep 10, 2018

@iipeace 그 추가를 다른 분들이 하실 수 있게 가이드를 해달라는 @KangWooJin 님의 의견이 아니었을까요? ㅋㅋㅋ

@iipeace
Copy link
Collaborator

iipeace commented Sep 10, 2018

disk 쪽 정보는 추가하려면 작업량이 상당하여 저도 좀 고민입니다 ㅠ
SystemManager.reportSystemStat() 내부에 정보를 추가하여야 하는데,
SystemManager.printDiskInfo() 소스를 참고하여 만들어야 합니다...

@iipeace
Copy link
Collaborator

iipeace commented Sep 13, 2018

json report에 아래와 같이 storage 정보를 추가하였습니다.

각 device node 별 storage 사용정보가 표시되며,
mount 정보도 포함됩니다.

read/write/total/free의 단위는 MB이며,
favail은 생성 가능한 파일의 수,
usage는 사용량에 대한 %입니다.

"storage": {
"total": {
"write": 0,
"usage": "50",
"read": 0,
"mount": null,
"total": 2294056,
"favail": 134033133,
"free": 1133342
},
"/dev/sdb1": {
"write": 0,
"usage": "68",
"read": 0,
"mount": {
"path": "/mnt/hdd1",
"fs": "ext4",
"option": "rw,relatime,data=ordered"
},
"total": 938900,
"favail": 50709785,
"free": 294134
},
"/dev/sda1": {
"write": 0,
"usage": "10",
"read": 0,
"mount": {
"path": "/",
"fs": "ext4",
"option": "rw,relatime,errors=remount-ro,data=ordered"
},
"total": 416256,
"favail": 26727714,
"free": 374107
},
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants