Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- c3 축 없애기
- c3 축 가리기
- python subprocess
- telegraf
- semanage
- 백준
- c++ 정규식
- c3 step graph
- snmp test
- selinux port 등록
- CentOS7
- InfluxDB
- gcc regex
- g++ 업데이트
- c3 second
- 정규식 문자열 출력
- c3 초
- influxdb 설치
- grafana dashboard
- python os
- subporcess path
- regex_search
- 1697
- snmp
- centos pyhon 설치
- gcc 업데이트
- linux시간으로 변경
- 정규식 컴파일
- 정규식 활용
- python popen
Archives
- Today
- Total
리셋 되지 말자
[AWS] EC2 디스크 사용량 부족할때 슬랙으로 알림보내기! 디스크 사용량 모니터링 초 간단 방법 - 타블로그 참고 본문
Infra
[AWS] EC2 디스크 사용량 부족할때 슬랙으로 알림보내기! 디스크 사용량 모니터링 초 간단 방법 - 타블로그 참고
kyeongjun-dev 2023. 3. 20. 10:33https://donggu1105.tistory.com/m/203
감사합니다.
IP=$(hostname -I);
LIMIT=90;
slack_webhook_url="https://hooks.slack.com/{Slack Webhook URL}"
root_disk_used=$(df / | grep ^/ | awk '{print $5}');
root_disk_used=${root_disk_used::-1};
test $LIMIT -lt $root_disk_used && curl -X POST --data-urlencode "payload={\"channel\": \"#alert\", \"username\": \"disk_use_alert\", \"text\": \"Usage of disk is in danger. IP: $IP ROOT_DISK_USAGE: $root_disk_used % <https://ap-northeast-2.console.aws.amazon.com/ec2/v2/home?region=ap-northeast-2#Instances:search=$IP |Click here to go AWS EC2 Instance > \", \"icon_emoji\": \":sunrise:\"}" $slack_webhook_url;
매일 15시 00분에 실행
0 15 * * * sh /home/ec2-user/alert.sh
'Infra' 카테고리의 다른 글
[Ansible] aws ec2 종료 (0) | 2021.08.10 |
---|---|
[Ansible] vpc subnet gateway routing table keypair instance 생성 (0) | 2021.08.09 |
[Packer] 이미시 생성 후, 결과를 파일로 저장 (0) | 2021.08.09 |
[Ansible] 변수 사용법 (0) | 2021.08.09 |
[Ansible] aws 사용하기 - vpc, instance 생성 (0) | 2021.07.13 |
Comments