1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
//! munin-plugin - Simple writing of plugins for munin in Rust
//!
//! SPDX-License-Identifier: LGPL-3.0-only
//!
//! Copyright (C) 2022 Joerg Jaspert <joerg@debian.org>
//!
//! # About
//! Simple way to write munin plugins.
//!
//! # Repository / plugin using this code
//! - [Simple munin plugin to graph load](https://github.com/Ganneff/munin-load)
//!
//! # Usage
//! To implement a standard munin plugin, which munin runs every 5 minutes when fetching data, you load this library, create an empty struct named for your plugin and then implement `MuninPlugin` for your struct. You need to write out the functions `config` and `fetch`, the rest can have the magic `unimplemented!()`, and you call start() on your Plugin.
//!
//! # Example
//! The following implements the **load** plugin from munin, graphing the load average of the system, using the 5-minute value. As implemented, it expects to be run by munin every 5 minutes, usually munin will first run it with the config parameter, followed by no parameter to fetch data. If munin-node supports it and the capability _dirtyconfig_ is set, config will also print out data.
//!
//! It is a shortened version of the plugin linked above (Simple munin plugin to graph load), with things like logging dropped.
//!
//! ```rust
//! use anyhow::Result;
//! use munin_plugin::{config::Config, MuninPlugin};
//! use procfs::LoadAverage;
//! use std::io::{self, BufWriter, Write};
//!
//! // Our plugin struct
//! #[derive(Debug)]
//! struct LoadPlugin;
//!
//! // Implement the needed functions
//! impl MuninPlugin for LoadPlugin {
//! // Write out munin config. handle is setup as a bufwriter to stdout.
//! fn config<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> {
//! writeln!(handle, "graph_title Load average")?;
//! writeln!(handle, "graph_args --base 1000 -l 0")?;
//! writeln!(handle, "graph_vlabel load")?;
//! writeln!(handle, "graph_scale no")?;
//! writeln!(handle, "graph_category system")?;
//! writeln!(handle, "load.label load")?;
//! writeln!(handle, "load.warning 10")?;
//! writeln!(handle, "load.critical 120")?;
//! writeln!(handle, "graph_info The load average of the machine describes how many processes are in the run-queue (scheduled to run immediately.")?;
//! writeln!(handle, "load.info Average load for the five minutes.")?;
//! Ok(())
//! }
//!
//! // Fetch and display data
//! fn fetch(&self) {
//! let load = (LoadAverage::new().unwrap().five * 100.0) as isize;
//! println!("load.value {}", load);
//! }
//!
//! // This plugin does not need any setup and will just work, so
//! // just auto-configure it, if asked for.
//! fn check_autoconf(&self) -> bool {
//! true
//! }
//!
//! // The other functions are not needed for a simple plugin that
//! // only gathers data every 5 minutes (munin standard), but the
//! // trait requires stubs to be there.
//! fn run(&self) {
//! unimplemented!()
//! }
//! fn daemonize(&self) {
//! unimplemented!()
//! }
//! fn acquire(&self) {
//! unimplemented!()
//! }
//! }
//!
//! // The actual program start point
//! fn main() -> Result<()> {
//! // Setup our config, needs our name, rest the defaults will work.
//! let config = Config::new("load".to_string());
//! // Get our Plugin
//! let load = LoadPlugin;
//! // And let it do the work.
//! load.start(config)?;
//! Ok(())
//! }
//! ```
#![warn(missing_docs)]
pub mod config;
pub use crate::config::Config;
use anyhow::{anyhow, Result};
use log::{info, trace, warn};
use std::{
env,
io::{self, BufWriter, Write},
};
/// Defines a Munin Plugin and the needed functions
pub trait MuninPlugin {
/// Write out a munin config, read the [Developing
/// plugins](http://guide.munin-monitoring.org/en/latest/develop/plugins/index.html)
/// guide from munin for everything you can print out here.
///
/// Note that munin expects this to appear on stdout, so the
/// plugin gives you a handle to write to, which is setup as a
/// BufWriter to stdout. The BufWriter size defaults to 8192
/// bytes, but if you need more, its size can be set using
/// [Config::cfgsize]. An example where this may be useful is a
/// munin multigraph plugin that outputs config for 20 or more
/// different graphs.
///
/// # Example
/// ```rust
/// # pub use munin_plugin::*;
/// # use anyhow::{anyhow, Result};
/// # use std::{
/// # env,
/// # io::{self, BufWriter, Write},
/// # };
/// # struct LoadPlugin;
/// # impl MuninPlugin for LoadPlugin {
/// # fn run(&self) { todo!() }
/// # fn daemonize(&self) { todo!() }
/// # fn acquire(&self) { todo!() }
/// # fn fetch(&self) { todo!() }
/// fn config<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> {
/// writeln!(handle, "graph_title Load average")?;
/// writeln!(handle, "graph_args --base 1000 -l 0")?;
/// writeln!(handle, "graph_vlabel load")?;
/// writeln!(handle, "graph_scale no")?;
/// writeln!(handle, "graph_category system")?;
/// writeln!(handle, "load.label load")?;
/// writeln!(handle, "load.warning 10")?;
/// writeln!(handle, "load.critical 120")?;
/// writeln!(handle, "graph_info The load average of the machine describes how many processes are in the run-queue (scheduled to run immediately.")?;
/// writeln!(handle, "load.info Average load for the five minutes.")?;
/// Ok(())
/// }
/// # }
/// ```
fn config<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()>;
/// Run
fn run(&self);
/// Daemonize
fn daemonize(&self);
/// Acquire
fn acquire(&self);
/// Fetch
fn fetch(&self);
/// Check autoconf
fn check_autoconf(&self) -> bool {
false
}
/// Autoconf
fn autoconf(&self) {
if self.check_autoconf() {
println!("yes")
} else {
println!("no")
}
}
/// Start
fn start(&self, config: Config) -> Result<bool> {
trace!("Plugin start");
trace!("My plugin config: {config:#?}");
// Store arguments for (possible) later use
let args: Vec<String> = env::args().collect();
// Now go over the args and see what we are supposed to do
match args.len() {
// no arguments passed, print data
1 => {
self.fetch();
return Ok(true);
}
// Argument passed, check which one and act accordingly
2 => match args[1].as_str() {
"config" => {
// We want to write a possibly large amount to stdout, take and lock it
let stdout = io::stdout();
// Buffered writer, to gather multiple small writes together
let mut handle = BufWriter::with_capacity(config.cfgsize, stdout.lock());
self.config(&mut handle)?;
// And flush the handle, so it can also deal with possible errors
handle.flush()?;
// If munin supports dirtyconfig, send the data now
if config.dirtyconfig {
trace!("Munin supports dirtyconfig, sending data now");
self.fetch();
}
return Ok(true);
}
"autoconf" => {
self.autoconf();
return Ok(true);
}
&_ => info!("Found an argument: {}", args[1]),
},
// Whatever else
_ => return Err(anyhow!("No argument given")),
}
Ok(true)
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::path::PathBuf;
#[test]
fn test_config() {
// Whole set of defaults
let config = config::Config {
..Default::default()
};
assert_eq!(
config.plugin_name,
String::from("Simple munin plugin in Rust")
);
// Use defaults (except for name)
let mut config2 = config::Config {
plugin_name: String::from("Lala"),
..Default::default()
};
assert_eq!(config2.plugin_name, String::from("Lala"));
assert_eq!(config2.daemonize, false);
config2.pidfile = PathBuf::new();
config2.pidfile.push(&config2.plugin_statedir);
config2.pidfile.push(String::from("Lala.pid"));
let config3 = config::Config::new(String::from("Lala"));
assert_eq!(config2, config3);
}
}