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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
//! 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<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> {
//! let load = (LoadAverage::new().unwrap().five * 100.0) as isize;
//! writeln!(handle, "load.value {}", load);
//! Ok(())
//! }
//!
//! // 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<()> {
//! // Get our Plugin
//! let load = LoadPlugin;
//! // And let it do the work.
//! load.simple_start(String::from("load"))?;
//! Ok(())
//! }
//! ```
//!
//! # Logging
//! This crate uses the default [log] crate to output log messages of
//! level trace or debug. No other levels will be used. If you want to
//! see them, select a log framework you like and ensure its level
//! will display trace/debug messages. See that frameworks
//! documentation on how to setup/include it.
//!
//! If you do not want/need log output, just do nothing.
// Tell us if we forget to document things
#![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
/// [std::io::BufWriter] to stdout. The [std::io::BufWriter]
/// capacity 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 a many 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<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> { 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 delivers actual data to munin. This is called whenever
/// the plugin is called without an argument. If the
/// [config::Config::dirtyconfig] setting is true (auto-detected from
/// environment set by munin), this will also be called right
/// after having called [MuninPlugin::config].
///
/// A simple plugin may just gather data here too and then write it to the handle.
/// A plugin that daemonizes will gather data in [MuninPlugin::acquire] and cache
/// that in one or more cachefiles and just push it all to the handle (possibly using [std::io::copy]).
///
/// The size of the BufWriter is configurable from [Config::fetchsize].
///
/// # Example
/// ```rust
/// # use munin_plugin::*;
/// # use anyhow::{anyhow, Result};
/// # use std::{
/// # env,
/// # io::{self, BufWriter, Write},
/// # };
/// use procfs::LoadAverage;
/// # struct LoadPlugin;
/// # impl MuninPlugin for LoadPlugin {
/// # fn run(&self) { todo!() }
/// # fn daemonize(&self) { todo!() }
/// # fn acquire(&self) { todo!() }
/// # fn config<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> { todo!() }
/// fn fetch<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> {
/// let load = (LoadAverage::new().unwrap().five * 100.0) as isize;
/// writeln!(handle, "load.value {}", load)?;
/// Ok(())
/// }
/// # }
/// ```
fn fetch<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()>;
/// Check autoconf
fn check_autoconf(&self) -> bool {
false
}
/// Autoconf
fn autoconf(&self) {
if self.check_autoconf() {
println!("yes")
} else {
println!("no")
}
}
/// A simplified start, only need a name, for the rest, defaults are fine.
///
/// This is just a tiny bit of "being lazy is good" and will
/// create the [MuninPlugin::config] with the given name, then
/// call the real start function.
fn simple_start(&self, name: String) -> Result<bool> {
trace!("Simple Start, setting up config");
let config = Config::new(name);
trace!("Plugin: {:#?}", config);
self.start(config)?;
Ok(true)
}
/// The main plugin function, this will deal with parsing
/// commandline arguments and doing what is expected of the plugin
/// (present config, fetch values, whatever).
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 => {
// 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.fetchsize, stdout.lock());
self.fetch(&mut handle)?;
// And flush the handle, so it can also deal with possible errors
handle.flush()?;
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");
let mut handle = BufWriter::with_capacity(config.fetchsize, stdout.lock());
self.fetch(&mut handle)?;
// And flush the handle, so it can also deal with possible errors
handle.flush()?;
}
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;
// Our plugin struct
#[derive(Debug)]
struct TestPlugin;
impl MuninPlugin for TestPlugin {
fn config<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> {
writeln!(handle, "This is a test plugin")?;
writeln!(handle, "There is no config")?;
Ok(())
}
fn fetch<W: Write>(&self, handle: &mut BufWriter<W>) -> Result<()> {
writeln!(handle, "This is a value")?;
writeln!(handle, "And one more value")?;
Ok(())
}
fn check_autoconf(&self) -> bool {
true
}
fn run(&self) {
unimplemented!()
}
fn daemonize(&self) {
unimplemented!()
}
fn acquire(&self) {
unimplemented!()
}
}
#[test]
fn test_config() {
let test = TestPlugin;
// We want to check the output of config contains our test string
// above, so have it "write" it to a variable, then check if
// the variable contains what we want
let checktext = Vec::new();
let mut handle = BufWriter::new(checktext);
test.config(&mut handle).unwrap();
handle.flush().unwrap();
// And now check what got "written" into the variable
let (recovered_writer, _buffered_data) = handle.into_parts();
let output = String::from_utf8(recovered_writer).unwrap();
assert_eq!(
output,
String::from("This is a test plugin\nThere is no config\n")
);
}
#[test]
fn test_fetch() {
let test = TestPlugin;
// We want to check the output of config contains our test string
// above, so have it "write" it to a variable, then check if
// the variable contains what we want
let checktext = Vec::new();
let mut handle = BufWriter::new(checktext);
test.fetch(&mut handle).unwrap();
handle.flush().unwrap();
// And now check what got "written" into the variable
let (recovered_writer, _buffered_data) = handle.into_parts();
let output = String::from_utf8(recovered_writer).unwrap();
assert_eq!(
output,
String::from("This is a value\nAnd one more value\n")
);
}
}