Class MetricDataDetails.Builder
- java.lang.Object
-
- com.oracle.bmc.monitoring.model.MetricDataDetails.Builder
-
- Enclosing class:
- MetricDataDetails
public static class MetricDataDetails.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MetricDataDetails
build()
MetricDataDetails.Builder
compartmentId(String compartmentId)
The OCID of the compartment to use for metrics.MetricDataDetails.Builder
copy(MetricDataDetails model)
MetricDataDetails.Builder
datapoints(List<Datapoint> datapoints)
A list of metric values with timestamps.MetricDataDetails.Builder
dimensions(Map<String,String> dimensions)
Qualifiers provided in a metric definition.MetricDataDetails.Builder
metadata(Map<String,String> metadata)
Properties describing metrics.MetricDataDetails.Builder
name(String name)
The name of the metric.MetricDataDetails.Builder
namespace(String namespace)
The source service or application emitting the metric.MetricDataDetails.Builder
resourceGroup(String resourceGroup)
Resource group to assign to the metric.
-
-
-
Method Detail
-
namespace
public MetricDataDetails.Builder namespace(String namespace)
The source service or application emitting the metric.A valid namespace value starts with an alphabetical character and includes only alphanumeric characters and underscores. Custom metrics can't use the following reserved prefixes: oci_ and oracle_ Avoid entering confidential information.
Example: my_namespace
- Parameters:
namespace
- the value to set- Returns:
- this builder
-
resourceGroup
public MetricDataDetails.Builder resourceGroup(String resourceGroup)
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
- Parameters:
resourceGroup
- the value to set- Returns:
- this builder
-
compartmentId
public MetricDataDetails.Builder compartmentId(String compartmentId)
The OCID of the compartment to use for metrics.- Parameters:
compartmentId
- the value to set- Returns:
- this builder
-
name
public MetricDataDetails.Builder name(String name)
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. Avoid entering confidential information.
Example: my_app.success_rate
- Parameters:
name
- the value to set- Returns:
- this builder
-
dimensions
public MetricDataDetails.Builder dimensions(Map<String,String> dimensions)
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 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 512. Empty strings are not allowed for keys or values. Avoid entering confidential information.
Example: {"resourceId": "ocid1.instance.region1.phx.exampleuniqueID"}
- Parameters:
dimensions
- the value to set- Returns:
- this builder
-
metadata
public MetricDataDetails.Builder metadata(Map<String,String> metadata)
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"
- Parameters:
metadata
- the value to set- Returns:
- this builder
-
datapoints
public MetricDataDetails.Builder datapoints(List<Datapoint> datapoints)
A list of metric values with timestamps.At least one data point is required per call. For a data point to be posted, its timestamp must be near current time (less than two hours in the past and less than 10 minutes in the future).
- Parameters:
datapoints
- the value to set- Returns:
- this builder
-
build
public MetricDataDetails build()
-
copy
public MetricDataDetails.Builder copy(MetricDataDetails model)
-
-