OpenTelemetry SDK
    Preparing search index...

    Interface PeriodicMetricReaderConfigModel

    Configure a periodic metric reader. If omitted, ignore.

    interface PeriodicMetricReaderConfigModel {
        cardinality_limits?: CardinalityLimits;
        exporter: PushMetricExporterConfigModel;
        interval?: number | null;
        "max_export_batch_size/development"?: number | null;
        producers?: MetricProducerConfigModel[];
        timeout?: number | null;
    }
    Index
    cardinality_limits?: CardinalityLimits
    interval?: number | null

    Configure delay interval (in milliseconds) between start of two consecutive exports. Value must be non-negative. If omitted or null, 60000 is used.

    "max_export_batch_size/development"?: number | null

    Configure maximum export batch size. If omitted or null, no limit is used.

    Configure metric producers. If omitted, no metric producers are added.

    1

    timeout?: number | null

    Configure maximum allowed time (in milliseconds) to export data. Value must be non-negative. A value of 0 indicates no limit (infinity). If omitted or null, 30000 is used.