From 5e7d78ac539c69015b5e759bd2b640c21a6b1966 Mon Sep 17 00:00:00 2001 From: Jahanzeb Hassan Date: Tue, 7 Oct 2025 15:01:32 -0400 Subject: [PATCH 1/6] update cost x metrics section --- content/en/cloud_cost_management/setup/oracle.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/content/en/cloud_cost_management/setup/oracle.md b/content/en/cloud_cost_management/setup/oracle.md index 5accdd6fcc408..e356a82b5e77f 100644 --- a/content/en/cloud_cost_management/setup/oracle.md +++ b/content/en/cloud_cost_management/setup/oracle.md @@ -83,7 +83,7 @@ The following out-of-the-box tags are available for filtering and grouping data: #### Cost and observability correlation -Viewing costs in the context of observability data is important for understanding how infrastructure changes impact costs, identifying why costs change, and optimizing infrastructure for both costs and performance. +Viewing costs in the context of observability data is important for understanding how infrastructure changes impact costs, identifying why costs change, and optimizing infrastructure for both costs and performance. Datadog updates resource identifying tags on cost data for top OCI products to simplify correlating observability and cost metrics. For example, to view cost and utilization for each Compute instance, you can make a table with `oci.cost.amortized`, `oci.computeagent.cpu_utilization`, and `oci.computeagent.memory_utilization` (or any other Compute metric) and group by `host`. To see Object Storage usage and costs side by side, you can graph `oci.objectstorage.stored_bytes` and `oci.cost.amortized` grouped by `name`. @@ -93,6 +93,17 @@ The following out-of-the-box tags are available: | Compute | `host` | | Object Storage | `name` | +Additionally, we provide the following tags that can be used with many observability metrics: +| Tag Name | Tag Description | +| ---------------------------- | ----------------- | +| `compartment_id` | The identifier (OCID) for the compartment.| +| `compartment_name` | The name for the compartment.| +| `tenancy_ocid` | The identifier (OCID) for the OCI tenant.| +| `tenancy_name` | The name for the OCI tenant.| +| `resource_id` | An identifier assigned to a resource by the provider.| +| `resource_type` | Describes the kind of resource the charge applies to.| +| `dd_resource_key` | The Canonical Cloud Resource Identifier (CCRID) for the resource. Same as OCID for OCI. | + ### Container cost allocation Container cost allocation is not available for OCI. See [Container Cost Allocation][5] for more details. From 3d18fbe9901bbbe740da3691bcfb3a72ed426265 Mon Sep 17 00:00:00 2001 From: Jahanzeb Hassan Date: Tue, 7 Oct 2025 15:01:52 -0400 Subject: [PATCH 2/6] Remove spae --- content/en/cloud_cost_management/setup/oracle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/cloud_cost_management/setup/oracle.md b/content/en/cloud_cost_management/setup/oracle.md index e356a82b5e77f..ef840e8e97f0f 100644 --- a/content/en/cloud_cost_management/setup/oracle.md +++ b/content/en/cloud_cost_management/setup/oracle.md @@ -102,7 +102,7 @@ Additionally, we provide the following tags that can be used with many observabi | `tenancy_name` | The name for the OCI tenant.| | `resource_id` | An identifier assigned to a resource by the provider.| | `resource_type` | Describes the kind of resource the charge applies to.| -| `dd_resource_key` | The Canonical Cloud Resource Identifier (CCRID) for the resource. Same as OCID for OCI. | +| `dd_resource_key` | The Canonical Cloud Resource Identifier (CCRID) for the resource. Same as OCID for OCI.| ### Container cost allocation Container cost allocation is not available for OCI. See [Container Cost Allocation][5] for more details. From c80078830a774c94791c4c3db3beee46ada3aaf4 Mon Sep 17 00:00:00 2001 From: Jahanzeb Hassan Date: Tue, 7 Oct 2025 15:54:49 -0400 Subject: [PATCH 3/6] add example --- content/en/cloud_cost_management/setup/oracle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/cloud_cost_management/setup/oracle.md b/content/en/cloud_cost_management/setup/oracle.md index ef840e8e97f0f..0e114cca9d579 100644 --- a/content/en/cloud_cost_management/setup/oracle.md +++ b/content/en/cloud_cost_management/setup/oracle.md @@ -93,7 +93,7 @@ The following out-of-the-box tags are available: | Compute | `host` | | Object Storage | `name` | -Additionally, we provide the following tags that can be used with many observability metrics: +Additionally, we provide the following tags that can be used with many observability metrics. For example, to view cost and execution duration of OCI Functions for each compartment, you can make a table with `oci.cost.amortized`, `oci.faas.function_execution_duration` , and group by `compartment_id`. | Tag Name | Tag Description | | ---------------------------- | ----------------- | | `compartment_id` | The identifier (OCID) for the compartment.| From 46f82d163a13e5c70c72984dae796f15e06a1318 Mon Sep 17 00:00:00 2001 From: Jahanzeb Hassan Date: Tue, 7 Oct 2025 15:55:46 -0400 Subject: [PATCH 4/6] remove extra space --- content/en/cloud_cost_management/setup/oracle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/cloud_cost_management/setup/oracle.md b/content/en/cloud_cost_management/setup/oracle.md index 0e114cca9d579..f4fbc66495c82 100644 --- a/content/en/cloud_cost_management/setup/oracle.md +++ b/content/en/cloud_cost_management/setup/oracle.md @@ -93,7 +93,7 @@ The following out-of-the-box tags are available: | Compute | `host` | | Object Storage | `name` | -Additionally, we provide the following tags that can be used with many observability metrics. For example, to view cost and execution duration of OCI Functions for each compartment, you can make a table with `oci.cost.amortized`, `oci.faas.function_execution_duration` , and group by `compartment_id`. +Additionally, we provide the following tags that can be used with many observability metrics. For example, to view cost and execution duration of OCI Functions for each compartment, you can make a table with `oci.cost.amortized`, `oci.faas.function_execution_duration`, and group by `compartment_id`. | Tag Name | Tag Description | | ---------------------------- | ----------------- | | `compartment_id` | The identifier (OCID) for the compartment.| From 7defe78060da2554d862987836903d3514db40d2 Mon Sep 17 00:00:00 2001 From: Jahanzeb Hassan Date: Tue, 7 Oct 2025 15:57:40 -0400 Subject: [PATCH 5/6] add period --- content/en/cloud_cost_management/setup/oracle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/cloud_cost_management/setup/oracle.md b/content/en/cloud_cost_management/setup/oracle.md index f4fbc66495c82..5ed31d87bf680 100644 --- a/content/en/cloud_cost_management/setup/oracle.md +++ b/content/en/cloud_cost_management/setup/oracle.md @@ -41,7 +41,7 @@ You can visualize your ingested data using the following cost types: | Cost Type | Description | |-------------------------------------------------| ----------------------------------| -| `oci.cost.amortized` | Total cost of resources allocated at the time of usage over an interval. Costs include all applicable discounts | +| `oci.cost.amortized` | Total cost of resources allocated at the time of usage over an interval. Costs include all applicable discounts. | | `oci.cost.ondemand` | Total public, on-demand cost of resources before public and private discounts are applied over an interval. | ### Out-of-the-box tags From d466456fe60e82f03a0dff55a7145597ebce9eed Mon Sep 17 00:00:00 2001 From: Jahanzeb Hassan <106768669+jhassan124@users.noreply.github.com> Date: Tue, 7 Oct 2025 19:38:53 -0400 Subject: [PATCH 6/6] Update content/en/cloud_cost_management/setup/oracle.md Co-authored-by: Alicia Thuerk <26307719+git-thuerk-done@users.noreply.github.com> --- content/en/cloud_cost_management/setup/oracle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/cloud_cost_management/setup/oracle.md b/content/en/cloud_cost_management/setup/oracle.md index 5ed31d87bf680..cac41375934eb 100644 --- a/content/en/cloud_cost_management/setup/oracle.md +++ b/content/en/cloud_cost_management/setup/oracle.md @@ -93,7 +93,7 @@ The following out-of-the-box tags are available: | Compute | `host` | | Object Storage | `name` | -Additionally, we provide the following tags that can be used with many observability metrics. For example, to view cost and execution duration of OCI Functions for each compartment, you can make a table with `oci.cost.amortized`, `oci.faas.function_execution_duration`, and group by `compartment_id`. +Additionally, Datadog provides the following tags that can be used with many observability metrics. For example, to view cost and execution duration of OCI Functions for each compartment, you can make a table with `oci.cost.amortized`, `oci.faas.function_execution_duration`, and group by `compartment_id`. | Tag Name | Tag Description | | ---------------------------- | ----------------- | | `compartment_id` | The identifier (OCID) for the compartment.|