diff --git a/blog-service/2025-11-20-manage.md b/blog-service/2025-11-20-manage.md new file mode 100644 index 0000000000..6f824fdc62 --- /dev/null +++ b/blog-service/2025-11-20-manage.md @@ -0,0 +1,10 @@ +--- +title: Collection Overview (Manage) +image: https://assets-www.sumologic.com/company-logos/_800x418_crop_center-center_82_none/SumoLogic_Preview_600x600.jpg?mtime=1617040082 +keywords: + - collection-overview + - manage +hide_table_of_contents: true +--- + +We're excited to annouce a new **Collection Overview** page, providing parent organization users with a unified view of all Installed, Hosted, and OpenTelemetry collectors across their child orgs. This also helps you to monitor collector health status and drill down into the selected organization for deeper analysis. [Learn more](/docs/manage/manage-subscription/collection-overview). diff --git a/docs/api/collector-management/collector-api-methods-examples.md b/docs/api/collector-management/collector-api-methods-examples.md index ea251b2023..bf8d13004e 100644 --- a/docs/api/collector-management/collector-api-methods-examples.md +++ b/docs/api/collector-management/collector-api-methods-examples.md @@ -389,6 +389,35 @@ curl -u ':' -X GET https://api.sumologic.com/api/v1/collect +### Get Collectors Overview + +
+GET/collectors/overview +

+ +Get a list of Installed, Hosted, and OpenTelemetry collectors associated with your child orgs. + +#### Example + +This example gets the list of Installed and Hosted collector count, offline or inactive collectors, and health check details associated with your child orgs. + +```bash title="Request" +curl -u ':' -X GET https://api.sumologic.com/api/v1/collectors/overview +``` + +```json title="Response" +{ + "installedCollectorsCount": 1533, + "installedSourcesCount": 46936, + "hostedCollectorsCount": 151, + "hostedSourcesCount": 320, + "offlineCollectorsCount": 770, + "errors": 3845, + "warnings": 0 +} +``` +

+ ## POST methods ### Create Hosted Collector diff --git a/docs/manage/manage-subscription/collection-overview.md b/docs/manage/manage-subscription/collection-overview.md new file mode 100644 index 0000000000..cf3582ad13 --- /dev/null +++ b/docs/manage/manage-subscription/collection-overview.md @@ -0,0 +1,19 @@ +--- +id: collection-overview +title: Collection Overview +sidebar_label: Collection Overview +description: Monitor all the collectors associated with the child orgs in single interface. +--- + +import useBaseUrl from '@docusaurus/useBaseUrl'; + +The Collection Overview page provides a centralized view of all child org level collectors within your parent org. It enables all parent users to monitor collectors (Installed, Hosted, and OpenTelemetry) and sources across each child organization from a single interface. Additionally, this also helps you to identify and review collector health events, including stopped or inactive collectors. + +To view collector details at the child org level, perform the following steps: + +1. [**New UI**](/docs/get-started/sumo-logic-ui/). In the main Sumo Logic menu select **Organizations**, and then select **Collection Overview**. You can also click the **Go To...** menu at the top of the screen and select **Collection Overview**.
[**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Organizations > Collection Overview**.
collection-overview +2. Navigate to the **Collection** tab to view details of Installed and Hosted collectors or navigate to the **OT Collection** tab view details of OpenTelemetry collectors associated with the child orgs. + - **Collection**. Displays the total number of collectors and sources associated with the child orgs. Additionally, includes insights into the health events and stopped installed collectors for the respective child orgs level. + - **OT Collection**. Displays the total number of collectors and source templates associated with the child orgs. Additionally, includes insights into the health events and stopped installed collectors for the respective child orgs level. + +To drill down into a specific child org's details directly from the Collection Overview page, select **Open Organization** from the kebab menu for the selected collector.
drill-down-open-organization \ No newline at end of file diff --git a/docs/manage/manage-subscription/index.md b/docs/manage/manage-subscription/index.md index 54a228d255..98dbf15125 100644 --- a/docs/manage/manage-subscription/index.md +++ b/docs/manage/manage-subscription/index.md @@ -41,6 +41,12 @@ In this section, we'll introduce the following concepts:

Learn how to upgrade your Sumo Logic account plans.

+
+
+ icon

Collection Overview

+

Learn how to monitor all the collectors associated with the child orgs in single interface.

+
+
icon

Manage Billing Information

diff --git a/sidebars.ts b/sidebars.ts index 7935750a51..c322990297 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -1009,6 +1009,7 @@ module.exports = { 'manage/manage-subscription/upgrade-account/upgrade-cloud-flex-legacy-account', ], }, + 'manage/manage-subscription/collection-overview', 'manage/manage-subscription/manage-billing-information', 'manage/manage-subscription/organization-usage-limits', 'manage/manage-subscription/scan-budgets', diff --git a/static/img/manage/subscriptions/collection-overview.png b/static/img/manage/subscriptions/collection-overview.png new file mode 100644 index 0000000000..a3ed4fc0a6 Binary files /dev/null and b/static/img/manage/subscriptions/collection-overview.png differ diff --git a/static/img/manage/subscriptions/drill-down-open-organization.png b/static/img/manage/subscriptions/drill-down-open-organization.png new file mode 100644 index 0000000000..5be18f662f Binary files /dev/null and b/static/img/manage/subscriptions/drill-down-open-organization.png differ