接口 Exporter

  • 所有已知实现类:
    AbstractMetricExporter, MetricCopyExporter, PrefixMetricGroupExporter, RichGaugeExporter

    public interface Exporter
    Generic interface for metric exports. As you scale up metric collection you will often need to buffer metric data locally and export it periodically (e.g. for aggregation across a cluster), so this is the marker interface for those operations. The trigger of an export operation might be periodic or event driven, but it remains outside the scope of this interface. You might for instance create an instance of an Exporter and trigger it using a @Scheduled annotation in a Spring ApplicationContext.
    从以下版本开始:
    1.3.0
    • 方法详细资料

      • export

        void export()
        Export metric data.