Merge pull request #19369 from dreis2211

* pr/19369:
  Add group property to DynatraceProperties

Closes gh-19369
pull/19540/head
Stephane Nicoll 5 years ago
commit c076b625da

@ -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");
}
}

Loading…
Cancel
Save