mirror of
https://github.com/librenms/librenms-agent.git
synced 2024-05-09 09:54:52 +00:00
* Format with isort * Format with Black * Fix CRLF * Format with shellcheck * Fix some warning * Fix PHP style * Dont modifiy check_mk files * Fixes
90 lines
2.6 KiB
Python
Executable File
90 lines
2.6 KiB
Python
Executable File
#!/usr/bin/python3
|
|
# Copyright(C) 2009 Glen Pitt-Pladdy
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or(at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
#
|
|
#
|
|
import os
|
|
import time
|
|
import urllib.request
|
|
|
|
cachetime = 30
|
|
cachefile = "/var/cache/librenms/apache-snmp"
|
|
|
|
# Check for a cache file newer than cachetime seconds ago
|
|
|
|
if os.path.isfile(cachefile) and (time.time() - os.stat(cachefile)[8]) < cachetime:
|
|
# Use cached data
|
|
f = open(cachefile, "r")
|
|
data = f.read()
|
|
f.close()
|
|
else:
|
|
# Grab the status URL (fresh data), needs package urllib3
|
|
data = (
|
|
urllib.request.urlopen("http://localhost/server-status?auto")
|
|
.read()
|
|
.decode("UTF-8")
|
|
)
|
|
# Write file
|
|
f = open(cachefile + ".TMP." + str(os.getpid()), "w")
|
|
f.write(data)
|
|
f.close()
|
|
os.rename(cachefile + ".TMP." + str(os.getpid()), cachefile)
|
|
|
|
|
|
# dice up the data
|
|
scoreboardkey = ["_", "S", "R", "W", "K", "D", "C", "L", "G", "I", "."]
|
|
params = {}
|
|
for line in data.splitlines():
|
|
fields = line.split(": ")
|
|
if len(fields) <= 1:
|
|
continue # "localhost" as first line causes out of index error
|
|
elif fields[0] == "Scoreboard":
|
|
# count up the scoreboard into states
|
|
states = {}
|
|
for state in scoreboardkey:
|
|
states[state] = 0
|
|
for state in fields[1]:
|
|
states[state] += 1
|
|
elif fields[0] == "Total kBytes":
|
|
# turn into base(byte) value
|
|
params[fields[0]] = int(fields[1]) * 1024
|
|
elif len(fields) > 1:
|
|
# just store everything else
|
|
params[fields[0]] = fields[1]
|
|
|
|
# output the data in order(this is because some platforms don't have them all)
|
|
dataorder = [
|
|
"Total Accesses",
|
|
"Total kBytes",
|
|
"CPULoad",
|
|
"Uptime",
|
|
"ReqPerSec",
|
|
"BytesPerSec",
|
|
"BytesPerReq",
|
|
"BusyWorkers",
|
|
"IdleWorkers",
|
|
]
|
|
for param in dataorder:
|
|
try:
|
|
print(params[param])
|
|
except KeyError: # not all Apache's have all stats
|
|
print("U")
|
|
|
|
# print the scoreboard
|
|
for state in scoreboardkey:
|
|
print(states[state])
|