Skip to content

Latest commit

 

History

History
63 lines (39 loc) · 1.42 KB

auxiliary.rst

File metadata and controls

63 lines (39 loc) · 1.42 KB

Auxiliary Classes

nagiosplugin's auxiliary classes are not strictly required to write checks, but simplify common tasks and provide convenient access to functionality that is regularly needed by plugin authors.

Note

All classes that plugin authors typically need are imported directly into the nagiosplugin name space. For example, use :

import nagiosplugin
# ...
with nagiosplugin.Cookie(path) as cookie:
   # ...

to get a cookie.

nagiosplugin.cookie

nagiosplugin.cookie

Cookie

__enter__

Cookie example

Increment a connection count saved in the cookie by `self.new_conns`:

with nagiosplugin.Cookie(self.statefile) as cookie:
   cookie['connections'] = cookie.get('connections', 0) + self.new_conns

Note that the new content is committed automatically when exiting the with block.

nagiosplugin.logtail

nagiosplugin.logtail

LogTail

__enter__

LogTail example

Calls process() for each new line in a log file:

cookie = nagiosplugin.Cookie(self.statefile)
with nagiosplugin.LogTail(self.logfile, cookie) as newlines:
   for line in newlines:
      process(line.decode())