Commit bb3b6dbd authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '2.2.x'

Closes gh-19375
parents ef2eb2f6 c076b625
......@@ -51,6 +51,12 @@ public class DynatraceProperties extends StepRegistryProperties {
*/
private String uri;
/**
* Group for exported metrics. Used to specify custom device group name in the
* Dynatrace UI.
*/
private String group;
public String getApiToken() {
return this.apiToken;
}
......@@ -83,4 +89,12 @@ public class DynatraceProperties extends StepRegistryProperties {
this.uri = uri;
}
public String getGroup() {
return this.group;
}
public void setGroup(String group) {
this.group = group;
}
}
......@@ -52,4 +52,9 @@ class DynatracePropertiesConfigAdapter extends StepRegistryPropertiesConfigAdapt
return get(DynatraceProperties::getUri, DynatraceConfig.super::uri);
}
@Override
public String group() {
return get(DynatraceProperties::getGroup, DynatraceConfig.super::group);
}
}
......@@ -55,4 +55,11 @@ class DynatracePropertiesConfigAdapterTests {
assertThat(new DynatracePropertiesConfigAdapter(properties).technologyType()).isEqualTo("tech-1");
}
@Test
void whenPropertiesGroupIsSetAdapterGroupReturnsIt() {
DynatraceProperties properties = new DynatraceProperties();
properties.setGroup("group-1");
assertThat(new DynatracePropertiesConfigAdapter(properties).group()).isEqualTo("group-1");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment