- ์๋ฒ ๋๋
- Todo
- ARM ์๋ฒ ๋ชจ๋ ์ค๊ณ ๋ฐ ๋๋ผ์ด๋ฒ ๊ฐ๋ฐ
- CPU ๋ชจ๋๋ก ์ฅ๋๊ฐ ์ ์
- Doing?
- ์ทจ๋ฏธ... ํ๋์ผ๋ก ๋นผ์...
- OpenStack
- Todo
- Python ๊ฐ๋ฐ
UserParameter=bridge.discovery, /etc/zabbix/bridge_discovery.py | |
UserParameter=brdige.status[*], /etc/zabbix/bridge_status.py $1 |
UserParameter=ping_check[*], /etc/zabbix/ping_check.py $1 |
UserParameter=fchost.discovery, /etc/zabbix/fchost_discovery.py | |
UserParameter=fchost.status[*], /etc/zabbix/fchost_status.py $1 |
#!/usr/bin/env python | |
# coding: utf-8- | |
import os | |
import re | |
import sys | |
import tarfile as tar | |
LOG_PATH = sys.argv[1] |
import os | |
import sys | |
BASE_DIR = os.path.dirname((os.path.dirname(__file__))) | |
sys.path.append(BASE_DIR) | |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test.settings") | |
from django.core.wsgi import get_wsgi_application | |
application = get_wsgi_application() |