From bd206a5873a183b086843ad5f08ca8debf3ec865 Mon Sep 17 00:00:00 2001 From: Amee Lepcha Date: Fri, 23 May 2025 12:43:05 +0530 Subject: [PATCH 1/6] Update Azure Cosmos DB --- .../microsoft-azure/azure-cosmos-db.md | 118 +++--------------- 1 file changed, 18 insertions(+), 100 deletions(-) diff --git a/docs/integrations/microsoft-azure/azure-cosmos-db.md b/docs/integrations/microsoft-azure/azure-cosmos-db.md index cc80b1ce6e..1b977e7873 100644 --- a/docs/integrations/microsoft-azure/azure-cosmos-db.md +++ b/docs/integrations/microsoft-azure/azure-cosmos-db.md @@ -40,109 +40,15 @@ For Azure Cosmos DB, you can collect the following logs and metrics: Azure service sends monitoring data to Azure Monitor, which can then [stream data to Eventhub](https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/stream-monitoring-data-event-hubs). Sumo Logic supports: * Logs collection from [Azure Monitor](https://docs.microsoft.com/en-us/azure/monitoring-and-diagnostics/monitoring-get-started) using our [Azure Event Hubs source](/docs/send-data/collect-from-other-data-sources/azure-monitoring/ms-azure-event-hubs-source/). -* Metrics collection using our [HTTP Logs and Metrics source](/docs/send-data/collect-from-other-data-sources/azure-monitoring/collect-metrics-azure-monitor/) via Azure Functions deployed using the ARM template. +* Metrics collection using our [Azure Metrics Source](/docs/send-data/hosted-collectors/microsoft-source/azure-metrics-source). You must explicitly enable diagnostic settings for each Azure Cosmos DB account you want to monitor. You can forward logs to the same Event Hub provided they satisfy the limitations and permissions as described [here](https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings?tabs=portal#destination-limitations). When you configure the Event Hubs source or HTTP source, plan your source category to ease the querying process. A hierarchical approach allows you to make use of wildcards. For example: `Azure/CosmosDB/Logs`, `Azure/CosmosDB/Metrics`. -### Configure field in field schema - -1. [**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Manage Data > Logs > Fields**.
[**New UI**](/docs/get-started/sumo-logic-ui). In the top menu select **Configuration**, and then under **Logs** select **Fields**. You can also click the **Go To...** menu at the top of the screen and select **Fields**. -1. Search for the following fields: - - `tenant_name`. This field is tagged at the collector level. You can get the tenant name using the instructions [here](https://learn.microsoft.com/en-us/azure/active-directory-b2c/tenant-management-read-tenant-name#get-your-tenant-name). - - `location`. The region to which the resource name belongs to. - - `subscription_id`. ID associated with a subscription where the resource is present. - - `resource_group`. The resource group name where the Azure resource is present. - - `provider_name`. Azure resource provider name (for example, Microsoft.Network). - - `resource_type`. Azure resource type (for example, storage accounts). - - `resource_name`. The name of the resource (for example, storage account name). - - `service_type`. Type of the service that can be accessed with a Azure resource. - - `service_name`. Services that can be accessed with an Azure resource (for example, Azure SQL databases in Azure SQL Server). -1. Create the fields if they are not present. Refer to [Manage fields](/docs/manage/fields/#manage-fields). - -### Configure Field Extraction Rules - -Create the following Field Extraction Rules (FER) for Azure Storage by following the instructions in [Create a Field Extraction Rule](/docs/manage/field-extractions/create-field-extraction-rule/). - -#### Azure location extraction FER - - ```sql - Rule Name: AzureLocationExtractionFER - Applied at: Ingest Time - Scope (Specific Data): tenant_name=* - ``` - - ```sql title="Parse Expression" - json "location", "properties.resourceLocation", "properties.region", "properties.regionname" as location, resourceLocation, service_region, resourceRegion nodrop - | replace(toLowerCase(resourceLocation), " ", "") as resourceLocation - | if (!isBlank(resourceLocation), resourceLocation, location) as location - | if (!isBlank(service_region), service_region, location) as location - | if (!isBlank(resourceRegion), resourceRegion, location) as location - | if (isBlank(location), "global", location) as location - | fields location - ``` - -#### Resource ID extraction FER - - ```sql - Rule Name: AzureResourceIdExtractionFER - Applied at: Ingest Time - Scope (Specific Data): tenant_name=* - ``` - - ```sql title="Parse Expression" - json "resourceId", "ResourceId" as resourceId1, resourceId2 nodrop - | if (isBlank(resourceId1), resourceId2, resourceId1) as resourceId - | toUpperCase(resourceId) as resourceId - | parse regex field=resourceId "/SUBSCRIPTIONS/(?[^/]+)" nodrop - | parse field=resourceId "/RESOURCEGROUPS/*/" as resource_group nodrop - | parse regex field=resourceId "/PROVIDERS/(?[^/]+)" nodrop - | parse regex field=resourceId "/PROVIDERS/[^/]+(?:/LOCATIONS/[^/]+)?/(?[^/]+)/(?.+)" nodrop - | parse regex field=resource_name "(?[^/]+)(?:/PROVIDERS/[^/]+)?/(?[^/]+)/?(?.+)" nodrop - | if (isBlank(parent_resource_name), resource_name, parent_resource_name) as resource_name - | fields subscription_id, location, provider_name, resource_group, resource_type, resource_name, service_type, service_name - ``` - -### Configure metric rules - -Create the following metrics rules by following the instructions in [Create a metrics rule](/docs/metrics/metric-rules-editor/#create-a-metrics-rule). - -#### Azure observability metadata extraction application gateway level - -```sql -Rule Name: AzureObservabilityMetadataExtractionCosmosDBAccountLevel -``` - -```sql title="Metric match expression" -resourceId=/SUBSCRIPTIONS/*/RESOURCEGROUPS/*/PROVIDERS/MICROSOFT.DOCUMENTDB/*/* tenant_name=* -``` -| Fields extracted | Metric rule | -|:------------------|:---------------------| -| subscription_id | $resourceId._1 | -| resource_group | $resourceId._2 | -| provider_name | MICROSOFT.DOCUMENTDB | -| resource_type | $resourceId._3 | -| resource_name | $resourceId._4 | - - ### Configure metrics collection - -In this section, you will configure a pipeline for shipping metrics from Azure Monitor to an Event Hub, on to an Azure Function, and finally to an HTTP Source on a hosted collector in Sumo Logic. - -1. Create hosted collector and tag `tenant_name` field.
Azure Tag Tenant Name -2. [Configure an HTTP Source](/docs/send-data/collect-from-other-data-sources/azure-monitoring/collect-metrics-azure-monitor/#step-1-configure-an-http-source). -3. [Configure and deploy the ARM Template](/docs/send-data/collect-from-other-data-sources/azure-monitoring/collect-metrics-azure-monitor/#step-2-configure-azure-resources-using-arm-template). -4. [Export metrics to Event Hub](/docs/send-data/collect-from-other-data-sources/azure-monitoring/collect-metrics-azure-monitor/#step-3-export-metrics-for-a-particular-resource-to-event-hub). Perform the following steps for each Azure Cosmos DB account that you want to monitor. - 1. Choose **Stream to an event hub** as destination. - 1. Select all the metrics under **Metrics** section. - 1. Use the Event Hub namespace created by the ARM template in the previous step. You can create a new Event Hub or use the one created by the ARM template. You can use the default policy `RootManageSharedAccessKey` as the policy name.
Azure Cosmos DB Diagnostic Settings for metrics -5. Tag the location field in the source with right location value.
Azure Cosmos DB for NoSQL Tag Location - -:::note -Currently, only Azure Cosmos DB for NoSQL database account type supports exporting metrics using diagnostic settings. -::: +To set up the Azure Metrics source in Sumo Logic, refer to [Azure Metrics Source](/docs/send-data/hosted-collectors/microsoft-source/azure-metrics-source). ### Configure logs collection @@ -178,15 +84,27 @@ For security events, make sure you enable [Microsoft Defender for Cloud](https:/ This section provides instructions on how to install the Azure Cosmos DB app, and shows examples of each of the preconfigured dashboards you can use to analyze your data. -import AppInstall2 from '../../reuse/apps/app-install-v2.md'; +import AppInstallIndexV2 from '../../reuse/apps/app-install-index-option.md'; + + + +As part of the app installation process, the following fields will be created by default: - +- `tenant_name`. This field is tagged at the collector level. You can get the tenant name using the instructions [here](https://learn.microsoft.com/en-us/azure/active-directory-b2c/tenant-management-read-tenant-name#get-your-tenant-name). +- `location`. The region to which the resource name belongs to. +- `subscription_id`. ID associated with a subscription where the resource is present. +- `resource_group`. The resource group name where the Azure resource is present. +- `provider_name`. Azure resource provider name (for example, Microsoft.Network). +- `resource_type`. Azure resource type (for example, storage accounts). +- `resource_name`. The name of the resource (for example, storage account name). +- `service_type`. Type of the service that can be accessed with a Azure resource. +- `service_name`. Services that can be accessed with an Azure resource (for example, in Azure Container Instances the service is Subscriptions). ## Viewing the Azure Cosmos DB dashboards -import ViewDashboards from '../../reuse/apps/view-dashboards.md'; +import ViewDashboardsIndex from '../../reuse/apps/view-dashboards-index.md'; - + ### Overview From 9210c6a41e74fbb46ac4296f903a565ae199e19e Mon Sep 17 00:00:00 2001 From: Apoorv Kudesia Date: Tue, 27 May 2025 17:27:08 +0530 Subject: [PATCH 2/6] SUMO-261516 | Apoorv | Add. Partitions dashboard and monitor alerts --- .../microsoft-azure/azure-cosmos-db.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/integrations/microsoft-azure/azure-cosmos-db.md b/docs/integrations/microsoft-azure/azure-cosmos-db.md index 1b977e7873..1e72806f00 100644 --- a/docs/integrations/microsoft-azure/azure-cosmos-db.md +++ b/docs/integrations/microsoft-azure/azure-cosmos-db.md @@ -205,6 +205,19 @@ Use this dashboard to: Azure Cosmos DB - Administrative Operations dashboard +### Partitions + + +The **Azure Cosmos DB - Partitions** dashboard provides details about partitions count, throughput and physical partition size by database. + +Use this dashboard to: +* Monitor partition size and their throughput throughout the database. +* View partitions allocated to different DB's and collections +* Track partition count and usage. + +Azure Cosmos DB - Partitions dashboard + + ## Upgrade/Downgrade the Azure Cosmos DB app (optional) import AppUpdate from '../../reuse/apps/app-update.md'; @@ -217,6 +230,21 @@ import AppUninstall from '../../reuse/apps/app-uninstall.md'; +## Create monitors for Azure Cosmos DB + +import CreateMonitors from '../../reuse/apps/create-monitors.md'; + + + +### Azure Cosmos DB alerts + +These alerts are metrics-based and will work for all Cosmos DB's. + +| Alert Name | Description | Alert Condition | Recover Condition | +|:-----------------------------------------------|:-----------------------------------------------------------------------------------------|:----------------|:------------------| +| `Azure Cosmos DB - Availability` | This alert gets triggered when Availability drops below 100% in Azure Cosmos DB. | Count < 100 | Count >= 100 | +| `Azure Cosmos DB - Normalized RU Consumption` | This alert gets triggered when high RU consumption usage is detected in Azure Cosmos DB. | Count >= 90 | Count < 90 | + ## Troubleshooting ### HTTP Logs and Metrics Source used by Azure Functions From e433303107be196cf5461f23f91f31b2afaed99a Mon Sep 17 00:00:00 2001 From: Apoorv A Kudesia Date: Wed, 28 May 2025 10:24:10 +0530 Subject: [PATCH 3/6] Update docs/integrations/microsoft-azure/azure-cosmos-db.md Co-authored-by: John Pipkin (Sumo Logic) --- docs/integrations/microsoft-azure/azure-cosmos-db.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/azure-cosmos-db.md b/docs/integrations/microsoft-azure/azure-cosmos-db.md index 1e72806f00..bfba3457b8 100644 --- a/docs/integrations/microsoft-azure/azure-cosmos-db.md +++ b/docs/integrations/microsoft-azure/azure-cosmos-db.md @@ -91,7 +91,7 @@ import AppInstallIndexV2 from '../../reuse/apps/app-install-index-option.md'; As part of the app installation process, the following fields will be created by default: - `tenant_name`. This field is tagged at the collector level. You can get the tenant name using the instructions [here](https://learn.microsoft.com/en-us/azure/active-directory-b2c/tenant-management-read-tenant-name#get-your-tenant-name). -- `location`. The region to which the resource name belongs to. +- `location`. The region the resource name belongs to. - `subscription_id`. ID associated with a subscription where the resource is present. - `resource_group`. The resource group name where the Azure resource is present. - `provider_name`. Azure resource provider name (for example, Microsoft.Network). From b5cadc8d19dd05c7b7d78d9bd4837eb987943337 Mon Sep 17 00:00:00 2001 From: Apoorv A Kudesia Date: Wed, 28 May 2025 10:24:22 +0530 Subject: [PATCH 4/6] Update docs/integrations/microsoft-azure/azure-cosmos-db.md Co-authored-by: John Pipkin (Sumo Logic) --- docs/integrations/microsoft-azure/azure-cosmos-db.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/azure-cosmos-db.md b/docs/integrations/microsoft-azure/azure-cosmos-db.md index bfba3457b8..4f59b4886b 100644 --- a/docs/integrations/microsoft-azure/azure-cosmos-db.md +++ b/docs/integrations/microsoft-azure/azure-cosmos-db.md @@ -97,7 +97,7 @@ As part of the app installation process, the following fields will be created by - `provider_name`. Azure resource provider name (for example, Microsoft.Network). - `resource_type`. Azure resource type (for example, storage accounts). - `resource_name`. The name of the resource (for example, storage account name). -- `service_type`. Type of the service that can be accessed with a Azure resource. +- `service_type`. Type of the service that can be accessed with an Azure resource. - `service_name`. Services that can be accessed with an Azure resource (for example, in Azure Container Instances the service is Subscriptions). ## Viewing the Azure Cosmos DB dashboards From d6d2ee0ad59f69a55f12c341d99ed9ca0a51e78a Mon Sep 17 00:00:00 2001 From: Apoorv A Kudesia Date: Wed, 28 May 2025 10:24:30 +0530 Subject: [PATCH 5/6] Update docs/integrations/microsoft-azure/azure-cosmos-db.md Co-authored-by: John Pipkin (Sumo Logic) --- docs/integrations/microsoft-azure/azure-cosmos-db.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/azure-cosmos-db.md b/docs/integrations/microsoft-azure/azure-cosmos-db.md index 4f59b4886b..0f2fd70b47 100644 --- a/docs/integrations/microsoft-azure/azure-cosmos-db.md +++ b/docs/integrations/microsoft-azure/azure-cosmos-db.md @@ -208,7 +208,7 @@ Use this dashboard to: ### Partitions -The **Azure Cosmos DB - Partitions** dashboard provides details about partitions count, throughput and physical partition size by database. +The **Azure Cosmos DB - Partitions** dashboard provides details about partitions count, throughput, and physical partition size by database. Use this dashboard to: * Monitor partition size and their throughput throughout the database. From ecef27d0a12b9a00246bb4bbd8c581dc5a2fa1f9 Mon Sep 17 00:00:00 2001 From: Apoorv A Kudesia Date: Wed, 28 May 2025 12:40:04 +0530 Subject: [PATCH 6/6] Update docs/integrations/microsoft-azure/azure-cosmos-db.md Co-authored-by: Jagadisha V <129049263+JV0812@users.noreply.github.com> --- docs/integrations/microsoft-azure/azure-cosmos-db.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/microsoft-azure/azure-cosmos-db.md b/docs/integrations/microsoft-azure/azure-cosmos-db.md index 0f2fd70b47..db49a9e929 100644 --- a/docs/integrations/microsoft-azure/azure-cosmos-db.md +++ b/docs/integrations/microsoft-azure/azure-cosmos-db.md @@ -212,7 +212,7 @@ The **Azure Cosmos DB - Partitions** dashboard provides details about partitions Use this dashboard to: * Monitor partition size and their throughput throughout the database. -* View partitions allocated to different DB's and collections +* View partitions allocated to different DB's and collections. * Track partition count and usage. Azure Cosmos DB - Partitions dashboard