greggd 1.0.5

Lightweight Linux, macOS, and Windows metrics daemon that exposes a read-only JSON API for the gregg client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `greggd` library.
//!
//! Provides the daemon components: configuration, service management,
//! metrics collection, periodic sampling, and HTTP server.

pub mod cli;
pub mod collector;
pub mod config;
pub mod run;
pub mod sampler;
pub mod server;
#[cfg(target_os = "windows")]
pub mod service;