1 Star 0 Fork 1

jsyey/librenms

forked from 周滔/librenms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
librenms-service.py 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python3
import argparse
import logging
import os
import sys
import threading
import LibreNMS
from logging import info
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="LibreNMS Service - manages polling and other periodic processes"
)
parser.add_argument(
"-g",
"--group",
nargs="+",
type=int,
help="Set the poller group for this poller",
)
parser.add_argument("-v", "--verbose", action="count", help="Show verbose output.")
parser.add_argument("-d", "--debug", action="store_true", help="Show debug output.")
parser.add_argument(
"-m",
"--multiple",
action="store_true",
help="Allow multiple instances of the service.",
)
parser.add_argument(
"-t",
"--timestamps",
action="store_true",
help="Include timestamps in the logs (not normally needed for syslog/journald",
)
args = parser.parse_args()
if args.timestamps:
logging.basicConfig(
format="%(asctime)s %(threadName)s(%(levelname)s):%(message)s"
)
else:
logging.basicConfig(format="%(threadName)s(%(levelname)s):%(message)s")
if args.verbose:
logging.getLogger().setLevel(logging.INFO)
elif args.debug:
logging.getLogger().setLevel(logging.DEBUG)
else:
logging.getLogger().setLevel(logging.WARNING)
info("Configuring LibreNMS service")
try:
service = LibreNMS.Service()
except Exception as e:
# catch any initialization errors and print the message instead of a stack trace
print(e)
sys.exit(2)
service.config.single_instance = args.multiple
if args.group:
if isinstance(args.group, list):
service.config.group = args.group
else:
service.config.group = [args.group]
info(
"Entering main LibreNMS service loop on {}/{}...".format(
os.getpid(), threading.current_thread().name
)
)
service.start()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yeyong/librenms.git
git@gitee.com:yeyong/librenms.git
yeyong
librenms
librenms
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385