lmn-core 0.3.0

Core engine for the lmn HTTP load testing CLI
Documentation
/// Central registry of all tracing span names used in lmn.
///
/// Use the associated constants directly to get the right span name in a given context.
pub struct SpanName;

impl SpanName {
    const PREFIX: &'static str = "lmn";

    /// Root span covering the entire lmn run.
    pub const RUN: &'static str = "lmn.run";

    /// Span covering the full parse + validation of a request template file.
    pub const TEMPLATE_PARSE: &'static str = "lmn.template.parse";

    /// Span covering placeholder validation during template parsing.
    pub const TEMPLATE_VALIDATE_PLACEHOLDERS: &'static str = "lmn.template.validate_placeholders";

    /// Span covering circular reference detection during template parsing.
    pub const TEMPLATE_CHECK_CIRCULAR_REFS: &'static str = "lmn.template.check_circular_refs";

    /// Span covering the full parse + validation of a response template file.
    pub const RESPONSE_TEMPLATE_PARSE: &'static str = "lmn.response_template.parse";

    /// Span covering the entire request execution phase across all workers.
    pub const REQUESTS: &'static str = "lmn.requests";

    /// Returns the shared top-level prefix used for all span names.
    pub fn prefix() -> &'static str {
        Self::PREFIX
    }
}