mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-25 02:18:08 +00:00
typofixes - https://github.com/vlajos/misspell_fixer
Suspicious sections: plugins/mail/postfix_mail_stats recieved.label plugins/nginx/nginx_vhost_traffic
This commit is contained in:
parent
8e18199f16
commit
fba800ae52
119 changed files with 176 additions and 176 deletions
|
@ -20,12 +20,12 @@
|
|||
force the running nsd process to write the current statistics.
|
||||
|
||||
Tip: To see if it's already set up correctly, just run this plugin
|
||||
with the paramater "autoconf". If you get a "yes", everything should
|
||||
with the parameter "autoconf". If you get a "yes", everything should
|
||||
work like a charm already.
|
||||
|
||||
This configuration section shows the defaults of the plugin:
|
||||
|
||||
The stats line is a set of space-seperated values that you wish to
|
||||
The stats line is a set of space-separated values that you wish to
|
||||
retrieve from NSD. The format is VALUE=Caption. For spaces in a
|
||||
caption value, replace them with an underscore (_).
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
|||
env.stats "A=A AAAA=AAAA MX=MX PTR=PTR TYPE252=AXFR SNXD=NXDOMAIN RQ=Total_Successful"
|
||||
|
||||
If you need to set a user for the logfile to be readable, and most
|
||||
importantly, the process to recieve the signal, you may specify it.
|
||||
importantly, the process to receive the signal, you may specify it.
|
||||
For example:
|
||||
|
||||
[nsd]
|
||||
|
@ -43,7 +43,7 @@
|
|||
|
||||
=head1 INTERPRETATION
|
||||
|
||||
The plugin shows the number of queries that nsd has recieved,
|
||||
The plugin shows the number of queries that nsd has received,
|
||||
averaged over a period to gain the number of queries per second.
|
||||
For most servers, these values will be very low. In the event
|
||||
of a misconfiguration, the plugin will return undefined values.
|
||||
|
@ -77,7 +77,7 @@ import signal
|
|||
|
||||
STATS_FILE = os.environ.get('statsfile', '/var/log/nsd.log')
|
||||
PID_FILE = os.environ.get('pidfile', '/var/run/nsd3/nsd.pid')
|
||||
STATS_STRING = os.environ.get('stats', "A=A AAAA=AAAA MX=MX PTR=PTR TYPE252=AXFR SNXD=NXDOMAIN RQ=Total_Succesful")
|
||||
STATS_STRING = os.environ.get('stats', "A=A AAAA=AAAA MX=MX PTR=PTR TYPE252=AXFR SNXD=NXDOMAIN RQ=Total_Successful")
|
||||
|
||||
BOTH_LISTS = STATS_STRING.split()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue