Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,11 @@ subprojects {
ignoreMissingClasses = true
includeSynthetic = true

classExcludes = []
classExcludes = [
'io.micrometer.elastic.ElasticConfig',
'io.micrometer.ganglia.GangliaConfig',
'io.micrometer.graphite.GraphiteConfig'
]
compatibilityChangeExcludes = [ "METHOD_NEW_DEFAULT" ]

packageExcludes = ['io.micrometer.shaded.*', 'io.micrometer.statsd.internal']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,6 @@ public interface ElasticConfig extends StepRegistryConfig {
*/
ElasticConfig DEFAULT = k -> null;

/**
* Get the value associated with a key.
* @param key Key to look up in the config.
* @return Value for the key or null if no key is present.
*/
@Nullable
String get(String key);

/**
* Property prefix to prepend to configuration names.
* @return property prefix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,6 @@ public interface GangliaConfig extends StepRegistryConfig {
*/
GangliaConfig DEFAULT = k -> null;

/**
* Get the value associated with a key.
* @param key Key to lookup in the config.
* @return Value for the key or null if no key is present.
*/
@Nullable
String get(String key);

/**
* @return Property prefix to prepend to configuration names.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package io.micrometer.graphite;

import io.micrometer.common.lang.Nullable;
import io.micrometer.core.instrument.config.validate.Validated;
import io.micrometer.core.instrument.dropwizard.DropwizardConfig;

Expand All @@ -36,14 +35,6 @@ public interface GraphiteConfig extends DropwizardConfig {
*/
GraphiteConfig DEFAULT = k -> null;

/**
* Get the value associated with a key.
* @param key Key to lookup in the config.
* @return Value for the key or null if no key is present.
*/
@Nullable
String get(String key);

/**
* @return Property prefix to prepend to configuration names.
*/
Expand Down