Merge pull request #28944 from izeye

* pr/28944:
  Add public accessor for StackdriverProperties.useSemanticMetricTypes

Closes gh-28944
This commit is contained in:
Stephane Nicoll 2021-12-09 15:09:41 +01:00
commit 646caf0f25

View File

@ -78,11 +78,11 @@ public class StackdriverProperties extends StepRegistryProperties {
this.resourceLabels = resourceLabels;
}
boolean isUseSemanticMetricTypes() {
public boolean isUseSemanticMetricTypes() {
return this.useSemanticMetricTypes;
}
void setUseSemanticMetricTypes(boolean useSemanticMetricTypes) {
public void setUseSemanticMetricTypes(boolean useSemanticMetricTypes) {
this.useSemanticMetricTypes = useSemanticMetricTypes;
}