일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- G-suite
- 한글가이드
- Elasticsearch
- xe guest utilities
- GitLab
- 로그인불가
- elastic stack
- Kibana server is not ready yet
- ELASTIC
- freebsd
- docker
- bash
- proxycfg
- PlayBook
- Proxy
- ansible
- miniconda
- application security
- endpoint security
- Kibana
- XCP-ng
- hardening
- macos
- ssh key 배포
- 보안양파
- centos 8
- x-pack
- pfsense
- Windows
- Today
- Total
선 밖에 선 자유인
nagios nrpe sample template 본문
nrpe 이용 시 nagios sample template
define host{
name centos-test ; Name of this template
use generic-host ; Inherit default values
check_period 24x7
check_interval 5
retry_interval 1
max_check_attempts 10
check_command check-host-alive
notification_period 24x7
notification_interval 30
notification_options d,r
contact_groups admins
register 0 ; DONT REGISTER THIS - ITS A TEMPLATE
}
define host{
use centos-test ;
host_name centos-test ;
alias Linux Host ;
address 192.168.0.105 ;
}
define service{
use generic-service
host_name centos-test
service_description CPU Load
check_command check_nrpe!check_load
}
define service{
use generic-service
host_name centos-test
service_description Root Partition
check_command check_nrpe!check_disk
}
define service{
use generic-service
host_name centos-test
service_description Current Users
check_command check_nrpe!check_users
}
define service{
use generic-service
host_name centos-test
service_description Total Processes
check_command check_nrpe!check_procs
}