@Generated(value="OracleSDKGenerator", comments="API Version: 20180401") public final class MetricDataDetails extends Object
A metric object containing raw metric data points to be posted to the Monitoring service.
MetricDataDetails.Builder
. This model distinguishes fields
that are null
because they are unset from fields that are explicitly set to null
. This is done in
the setter methods of the MetricDataDetails.Builder
, which maintain a set of all explicitly set fields called
__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take
__explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).Modifier and Type | Class and Description |
---|---|
static class |
MetricDataDetails.Builder |
Constructor and Description |
---|
MetricDataDetails(String namespace,
String resourceGroup,
String compartmentId,
String name,
Map<String,String> dimensions,
Map<String,String> metadata,
List<Datapoint> datapoints)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static MetricDataDetails.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
String |
getCompartmentId()
The OCID of the compartment to use for metrics.
|
List<Datapoint> |
getDatapoints()
A list of metric values with timestamps.
|
Map<String,String> |
getDimensions()
Qualifiers provided in a metric definition.
|
Map<String,String> |
getMetadata()
Properties describing metrics.
|
String |
getName()
The name of the metric.
|
String |
getNamespace()
The source service or application emitting the metric.
|
String |
getResourceGroup()
Resource group to assign to the metric.
|
int |
hashCode() |
MetricDataDetails.Builder |
toBuilder() |
String |
toString() |
@ConstructorProperties(value={"namespace","resourceGroup","compartmentId","name","dimensions","metadata","datapoints"}) @Deprecated public MetricDataDetails(String namespace, String resourceGroup, String compartmentId, String name, Map<String,String> dimensions, Map<String,String> metadata, List<Datapoint> datapoints)
public static MetricDataDetails.Builder builder()
Create a new builder.
public MetricDataDetails.Builder toBuilder()
public String getNamespace()
The source service or application emitting the metric.
A valid namespace value starts with an alphabetical character and includes only alphanumeric characters and underscores. The "oci_" prefix is reserved. Avoid entering confidential information.
Example: my_namespace
public String getResourceGroup()
Resource group to assign to the metric. A resource group is a custom string that you can match when retrieving custom metrics. Only one resource group can be applied per metric. A valid resourceGroup value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($). Avoid entering confidential information.
Example: frontend-fleet
public String getName()
The name of the metric.
A valid name value starts with an alphabetical character and includes only alphanumeric characters, dots, underscores, hyphens, and dollar signs. The oci_
prefix is reserved.
Avoid entering confidential information.
Example: my_app.success_rate
public Map<String,String> getDimensions()
Qualifiers provided in a metric definition. Available dimensions vary by metric namespace. Each dimension takes the form of a key-value pair. A valid dimension key includes only printable ASCII, excluding periods (.) and spaces. The character limit for a dimension key is 256. A valid dimension value includes only Unicode characters. The character limit for a dimension value is 256. Empty strings are not allowed for keys or values. Avoid entering confidential information.
Example: "resourceId": "ocid1.instance.region1.phx.exampleuniqueID"
public Map<String,String> getMetadata()
Properties describing metrics. These are not part of the unique fields identifying the metric. Each metadata item takes the form of a key-value pair. The character limit for a metadata key is 256. The character limit for a metadata value is 256.
Example: "unit": "bytes"
public List<Datapoint> getDatapoints()
A list of metric values with timestamps. At least one data point is required per call.
Copyright © 2016–2022. All rights reserved.