Java 类org.springframework.boot.actuate.metrics.writer.PrefixMetricWriter 实例源码
项目:https-github.com-g0t4-jenkins2-course-spring-boot
文件:RichGaugeExporter.java
public RichGaugeExporter(RichGaugeReader reader, PrefixMetricWriter writer) {
this(reader, writer, "");
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot
文件:RichGaugeExporter.java
public RichGaugeExporter(RichGaugeReader reader, PrefixMetricWriter writer,
String prefix) {
super(prefix);
this.reader = reader;
this.writer = writer;
}
项目:spring-boot-concourse
文件:RichGaugeExporter.java
public RichGaugeExporter(RichGaugeReader reader, PrefixMetricWriter writer) {
this(reader, writer, "");
}
项目:spring-boot-concourse
文件:RichGaugeExporter.java
public RichGaugeExporter(RichGaugeReader reader, PrefixMetricWriter writer,
String prefix) {
super(prefix);
this.reader = reader;
this.writer = writer;
}
项目:contestparser
文件:RichGaugeExporter.java
public RichGaugeExporter(RichGaugeReader reader, PrefixMetricWriter writer) {
this(reader, writer, "");
}
项目:contestparser
文件:RichGaugeExporter.java
public RichGaugeExporter(RichGaugeReader reader, PrefixMetricWriter writer,
String prefix) {
super(prefix);
this.reader = reader;
this.writer = writer;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot
文件:PrefixMetricGroupExporter.java
/**
* Create a new exporter for metrics to a writer based on a prefix for the metric
* names.
* @param reader a reader as the source of metrics
* @param writer the writer to send the metrics to
* @param prefix the prefix for metrics to export
*/
public PrefixMetricGroupExporter(PrefixMetricReader reader, PrefixMetricWriter writer,
String prefix) {
super(prefix);
this.reader = reader;
this.writer = writer;
}
项目:spring-boot-concourse
文件:PrefixMetricGroupExporter.java
/**
* Create a new exporter for metrics to a writer based on a prefix for the metric
* names.
* @param reader a reader as the source of metrics
* @param writer the writer to send the metrics to
* @param prefix the prefix for metrics to export
*/
public PrefixMetricGroupExporter(PrefixMetricReader reader, PrefixMetricWriter writer,
String prefix) {
super(prefix);
this.reader = reader;
this.writer = writer;
}
项目:contestparser
文件:PrefixMetricGroupExporter.java
/**
* Create a new exporter for metrics to a writer based on a prefix for the metric
* names.
* @param reader a reader as the source of metrics
* @param writer the writer to send the metrics to
* @param prefix the prefix for metrics to export
*/
public PrefixMetricGroupExporter(PrefixMetricReader reader, PrefixMetricWriter writer,
String prefix) {
super(prefix);
this.reader = reader;
this.writer = writer;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot
文件:PrefixMetricGroupExporter.java
/**
* Create a new exporter for metrics to a writer based on an empty prefix for the
* metric names.
* @param reader a reader as the source of metrics
* @param writer the writer to send the metrics to
*/
public PrefixMetricGroupExporter(PrefixMetricReader reader,
PrefixMetricWriter writer) {
this(reader, writer, "");
}
项目:spring-boot-concourse
文件:PrefixMetricGroupExporter.java
/**
* Create a new exporter for metrics to a writer based on an empty prefix for the
* metric names.
* @param reader a reader as the source of metrics
* @param writer the writer to send the metrics to
*/
public PrefixMetricGroupExporter(PrefixMetricReader reader,
PrefixMetricWriter writer) {
this(reader, writer, "");
}
项目:contestparser
文件:PrefixMetricGroupExporter.java
/**
* Create a new exporter for metrics to a writer based on an empty prefix for the
* metric names.
* @param reader a reader as the source of metrics
* @param writer the writer to send the metrics to
*/
public PrefixMetricGroupExporter(PrefixMetricReader reader,
PrefixMetricWriter writer) {
this(reader, writer, "");
}