@stephen-shopopop/node-metrics
    Preparing search index...

    Type Alias MetricsValues

    MetricsValues: { [key in MetricProperties]: number } & {
        nodejs_active_handles: { [key: string]: number };
        nodejs_active_resources: { [key: string]: number };
        [key: `metric.${string}`]: number;
        [key: `metadata.${string}`]: string | object;
    }

    Represents the values for various metrics collected in the system.

    • Each property defined in MetricProperties maps to a numeric value.
    • Additional metrics can be added dynamically using keys prefixed with metric..
    • Metadata entries can be added dynamically using keys prefixed with metadata., with values as either objects or strings.
    • Includes detailed information about Node.js active resources and handles, each represented as a mapping from string keys to numeric values.