Popularity
4.9
Declining
Activity
0.0
Stable
5
4
1
Monthly Downloads: 27
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.
-
network-metrics
Send metrics to Ganglia, Graphite, and statsd
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
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.