
com.microsoft.applicationinsights.internal.schemav2.MetricData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationinsights-core Show documentation
Show all versions of applicationinsights-core Show documentation
This is the core module of Microsoft Application Insights Java SDK
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.applicationinsights.internal.schemav2;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
public class MetricData {
private List metrics;
private ConcurrentMap properties;
public MetricData() {}
public List getMetrics() {
if (metrics == null) {
metrics = new ArrayList<>();
}
return metrics;
}
public void setMetrics(List metrics) {
this.metrics = metrics;
}
public ConcurrentMap getProperties() {
if (properties == null) {
properties = new ConcurrentHashMap<>();
}
return properties;
}
public void setProperties(ConcurrentMap properties) {
this.properties = properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy