Skip to content

Commit 8c97852

Browse files
JV0812jpipkin1
andauthored
Collection Overview (#6032)
* Collection Overview * update API doc * Update blog-service/2025-11-17-manage.md Co-authored-by: John Pipkin (Sumo Logic) <[email protected]> * Update docs/manage/manage-subscription/collection-overview.md Co-authored-by: John Pipkin (Sumo Logic) <[email protected]> * Update docs/manage/manage-subscription/collection-overview.md Co-authored-by: John Pipkin (Sumo Logic) <[email protected]> * Update docs/manage/manage-subscription/collection-overview.md Co-authored-by: John Pipkin (Sumo Logic) <[email protected]> * Rename 2025-11-17-manage.md to 2025-11-20-manage.md --------- Co-authored-by: John Pipkin (Sumo Logic) <[email protected]>
1 parent 97a4a1e commit 8c97852

File tree

7 files changed

+65
-0
lines changed

7 files changed

+65
-0
lines changed

blog-service/2025-11-20-manage.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Collection Overview (Manage)
3+
image: https://assets-www.sumologic.com/company-logos/_800x418_crop_center-center_82_none/SumoLogic_Preview_600x600.jpg?mtime=1617040082
4+
keywords:
5+
- collection-overview
6+
- manage
7+
hide_table_of_contents: true
8+
---
9+
10+
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).

docs/api/collector-management/collector-api-methods-examples.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,35 @@ curl -u '<accessId>:<accessKey>' -X GET https://api.sumologic.com/api/v1/collect
389389

390390
</details>
391391

392+
### Get Collectors Overview
393+
394+
<details>
395+
<summary><span className="api get">GET</span><code>/collectors/overview</code></summary>
396+
<p/>
397+
398+
Get a list of Installed, Hosted, and OpenTelemetry collectors associated with your child orgs.
399+
400+
#### Example
401+
402+
This example gets the list of Installed and Hosted collector count, offline or inactive collectors, and health check details associated with your child orgs.
403+
404+
```bash title="Request"
405+
curl -u '<accessId>:<accessKey>' -X GET https://api.sumologic.com/api/v1/collectors/overview
406+
```
407+
408+
```json title="Response"
409+
{
410+
"installedCollectorsCount": 1533,
411+
"installedSourcesCount": 46936,
412+
"hostedCollectorsCount": 151,
413+
"hostedSourcesCount": 320,
414+
"offlineCollectorsCount": 770,
415+
"errors": 3845,
416+
"warnings": 0
417+
}
418+
```
419+
</details>
420+
392421
## POST methods
393422

394423
### Create Hosted Collector
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
id: collection-overview
3+
title: Collection Overview
4+
sidebar_label: Collection Overview
5+
description: Monitor all the collectors associated with the child orgs in single interface.
6+
---
7+
8+
import useBaseUrl from '@docusaurus/useBaseUrl';
9+
10+
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.
11+
12+
To view collector details at the child org level, perform the following steps:
13+
14+
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**.<br/>[**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Organizations > Collection Overview**. <br/><img src={useBaseUrl('img/manage/subscriptions/collection-overview.png')} alt="collection-overview" style={{border: '1px solid gray'}} width="800" />
15+
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.
16+
- **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.
17+
- **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.
18+
19+
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. <br/><img src={useBaseUrl('img/manage/subscriptions/drill-down-open-organization.png')} alt="drill-down-open-organization" style={{border: '1px solid gray'}} width="800" />

docs/manage/manage-subscription/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ In this section, we'll introduce the following concepts:
4141
<p>Learn how to upgrade your Sumo Logic account plans.</p>
4242
</div>
4343
</div>
44+
<div className="box smallbox card">
45+
<div className="container">
46+
<a href={useBaseUrl('docs/manage/manage-subscription/collection-overview')}><img src={useBaseUrl('img/icons/operations/manage.png')} alt="icon" width="40"/><h4>Collection Overview</h4></a>
47+
<p>Learn how to monitor all the collectors associated with the child orgs in single interface.</p>
48+
</div>
49+
</div>
4450
<div className="box smallbox card">
4551
<div className="container">
4652
<a href={useBaseUrl('docs/manage/manage-subscription/manage-billing-information')}><img src={useBaseUrl('img/icons/operations/manage.png')} alt="icon" width="40"/><h4>Manage Billing Information</h4></a>

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,7 @@ module.exports = {
10091009
'manage/manage-subscription/upgrade-account/upgrade-cloud-flex-legacy-account',
10101010
],
10111011
},
1012+
'manage/manage-subscription/collection-overview',
10121013
'manage/manage-subscription/manage-billing-information',
10131014
'manage/manage-subscription/organization-usage-limits',
10141015
'manage/manage-subscription/scan-budgets',
274 KB
Loading
49.4 KB
Loading

0 commit comments

Comments
 (0)