Java Code Examples for io.micrometer.core.instrument.MeterRegistry#Config

The following examples show how to use io.micrometer.core.instrument.MeterRegistry#Config . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FlavorStatsdLineBuilder.java    From micrometer with Apache License 2.0 4 votes vote down vote up
protected FlavorStatsdLineBuilder(Meter.Id id, MeterRegistry.Config config) {
    this.id = id;
    this.config = config;
}
 
Example 2
Source File: SysdigStatsdLineBuilder.java    From micrometer with Apache License 2.0 4 votes vote down vote up
public SysdigStatsdLineBuilder(Meter.Id id, MeterRegistry.Config config) {
    super(id, config);
}
 
Example 3
Source File: DatadogStatsdLineBuilder.java    From micrometer with Apache License 2.0 4 votes vote down vote up
public DatadogStatsdLineBuilder(Meter.Id id, MeterRegistry.Config config) {
    super(id, config);
}
 
Example 4
Source File: EtsyStatsdLineBuilder.java    From micrometer with Apache License 2.0 4 votes vote down vote up
public EtsyStatsdLineBuilder(Meter.Id id, MeterRegistry.Config config, HierarchicalNameMapper nameMapper) {
    super(id, config);
    this.nameMapper = nameMapper;
}
 
Example 5
Source File: TelegrafStatsdLineBuilder.java    From micrometer with Apache License 2.0 4 votes vote down vote up
public TelegrafStatsdLineBuilder(Meter.Id id, MeterRegistry.Config config) {
    super(id, config);
}