//! This library was created to fit basic needs for parsing and creating Performance Data
//! ([Perfdata]) commonly used by check commands from monitoring engines like Icinga2 or Nagios.
//!
//! Usually the data will be turned into a time series, and - if defined - will be used to determine
//! the status of a monitoring object based on [ThresholdRange]s.
//!
//! Parsing and output is implemented to the [Nagios Reference](https://nagios-plugins.org/doc/guidelines.html#AEN200).
pub use MonitoringStatus;
pub use Perfdata;
pub use PerfdataSet;
pub use ThresholdRange;