Configure a periodic metric reader. If omitted, ignore.

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

Properties

cardinality_limits?: CardinalityLimits
interval?: null | number

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

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

1

timeout?: null | number

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.