Popularity
4.9
Declining
Activity
0.0
Stable
5
5
1
Monthly Downloads: 14
Programming language: Haskell
License: MIT License
Latest version: v0.3.2
nagios-check alternatives and similar packages
Based on the "Metrics" category.
Alternatively, view nagios-check alternatives based on common mentions on social networks and blogs.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of nagios-check or a related project?
README
nagios-check
Write Nagios (or Icinga, Shinken, et cetera) plugins in Haskell.
Documentation
On Hackage.
Example usage
{-# LANGUAGE OverloadedStrings #-}
import System.Nagios.Plugin
universeCheck :: Double -> NagiosPlugin ()
universeCheck pi' = do
addResult OK "universe passes basic consistency tests"
if (pi' < (3.0 :: Double)) then addResult Critical "universe broken, π < 3" else return ()
main :: IO ()
main = runNagiosPlugin (universeCheck 3.1415)
Dependencies
nagios-check has been tested with GHC 7.8 and 7.10.