Skip to content

Commit 38a9f61

Browse files
committed
Kickstart Data removal guidance
1 parent 5d04246 commit 38a9f61

File tree

2 files changed

+55
-8
lines changed

2 files changed

+55
-8
lines changed

docs/integrations/sumo-apps/kickstart-data.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
1111

1212
The Sumo Logic Kickstart Data app offers real-time insights for monitoring telemetry data from our OpenTelemetry Demo Astronomy application. Featuring predefined searches and dashboards, this app enhances visibility into application performance and operational metrics.
1313

14-
:::tip
15-
Learn more about [Kickstart Data](/docs/get-started/quickstart/#getting-started-with-kickstart-data-in-your-trial).
14+
:::info
15+
Kickstart Data comes preloaded for new trial users and expires automatically after 20 days or when you begin ingesting your own data—whichever comes first. [Learn more](/docs/get-started/quickstart/#getting-started-with-kickstart-data-in-your-trial).
1616
:::
1717

1818
## Application Data
1919

20-
This app uses [Sumo Logic Kickstart Data source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/sumo-logic-kickstart-data-source) to collect the data from OpenTelemetry Demo Astronomy Application.
20+
This app uses the [Sumo Logic Kickstart Data source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/sumo-logic-kickstart-data-source) to collect the data from OpenTelemetry Demo Astronomy app.
2121

2222
## Installing the Sumo Logic Kickstart Data app
2323

@@ -94,3 +94,7 @@ import AppUpdate from '../../reuse/apps/app-update.md';
9494
import AppUninstall from '../../reuse/apps/app-uninstall.md';
9595

9696
<AppUninstall/>
97+
98+
:::note For admins
99+
If you're done exploring Kickstart Data and want to purge it from your environment and Sumo Logic account, follow the steps under [How to manage or remove Kickstart Data](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/sumo-logic-kickstart-data-source#how-to-manage-or-remove-kickstart-data).
100+
:::

docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/sumo-logic-kickstart-data-source.md

Lines changed: 48 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
1212

1313
<img src={useBaseUrl('img/send-data/sumo-logic-kickstart-data.png')} alt="thumbnail icon" width="100"/>
1414

15-
The Sumo Logic Kickstart Data source ingests logs and metrics into Sumo Logic for our pre-loaded OpenTelemetry demo application. This source is engineered to provide a continuous stream of data that simulates a specific scenario, highlighting latency spikes across various services.
15+
The Sumo Logic Kickstart Data source ingests logs and metrics into Sumo Logic for our pre-loaded [OpenTelemetry Demo Astronomy application](/docs/integrations/sumo-apps/kickstart-data), an e-commerce-style app that simulates real user interactions and system performance. It provides a continuous stream of data that highlights latency spikes across various services, enabling hands-on exploration of Sumo Logic features.
1616

17-
:::tip
18-
Learn more about [Kickstart Data](/docs/get-started/quickstart/#getting-started-with-kickstart-data-in-your-trial).
17+
:::info
18+
Kickstart Data comes preloaded for new trial users and expires automatically after 20 days or when you begin ingesting your own data—whichever comes first. [Learn more](/docs/get-started/quickstart/#getting-started-with-kickstart-data-in-your-trial).
1919
:::
2020

2121
## Data collected
@@ -24,13 +24,56 @@ Learn more about [Kickstart Data](/docs/get-started/quickstart/#getting-started-
2424
| :--- | :--- |
2525
| Initial Data | The source ingests data from 6 hours in the past and 6 hours into the future. |
2626
| Regular Ingestion | Every 6 hours, the source ingests an additional 6 hours of future-dated data to ensure dashboards are always populated. |
27-
| Latency Spike Simulation | The data demonstrate a scenario showcasing latency spikes, aiding in performance analysis and debugging. |
27+
| Latency Spike Simulation | The data demonstrates a scenario showcasing latency spikes, aiding in performance analysis and debugging. |
2828

2929
## Setup
3030

3131
### Source configuration
3232

33-
The Kickstart Data source is pre-installed for all users upon creation of a [new organization](/docs/manage/manage-subscription/create-and-manage-orgs).
33+
The Kickstart Data source is automatically included when you create a new organization during your trial. [Learn more](/docs/get-started/quickstart/#getting-started-with-kickstart-data-in-your-trial).
34+
35+
## Kickstart Data availability and cleanup
36+
37+
Kickstart Data is preloaded in all new Sumo Logic Trial accounts to help you explore the platform without needing to ingest your own data. This sample data powers dashboards, log searches, and alerts using simulated application logs.
38+
39+
Kickstart Data is streamed continuously throughout your trial. As a result, the total volume of sample data will grow daily unless you manually stop the collector.
40+
41+
:::note
42+
In some cases, the Kickstart collector may remain active beyond the 7-day period originally expected. To stop ingestion entirely, you must delete the collector manually.
43+
:::
44+
45+
### How to manage or remove Kickstart Data
46+
47+
If you want to prevent Kickstart Data from continuing to ingest or appearing in your searches, you can choose from the following options.
48+
49+
#### Delete the Kickstart collector (recommended)
50+
51+
To stop new Kickstart Data from being ingested every 6 hours:
52+
53+
1. [**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Manage Data > Collection > Collection**. <br/>[**New UI**](/docs/get-started/sumo-logic-ui). In the Sumo Logic top menu, select **Configuration**, and then under **Data Collection**, select **Collection**. You can also click the **Go To...** menu at the top of the screen and select **Collection**.
54+
1. Locate the collector named `sample_otel_astronomy_shop`.
55+
1. Delete the collector.
56+
57+
This action prevents further sample data from entering your account.
58+
59+
#### Filter Kickstart Data out of search results (optional)
60+
61+
To focus only on your own data in search, use a filter to exclude Kickstart logs by metadata.
62+
63+
Add a line like the following to your query:
64+
65+
```sql
66+
_sourceCategory=custom_data/logs
67+
| where !(_sourceCategory=datagen_otel)
68+
```
69+
70+
You can also filter by other metadata such as `_sourceName` or `application`, depending on your environment. Kickstart logs often include tags like `application="astronomy-shop"`.
71+
72+
Use this method if you prefer not to delete the collector or change any partition settings.
73+
74+
#### Need Kickstart Data fully removed?
75+
76+
If you need Kickstart Data to be fully removed from your account for compliance or other reasons, contact [Support](https://support.sumologic.com) or your Sumo Logic representative for assistance. Our team can guide you through the process to ensure data is handled correctly.
3477

3578
## FAQ
3679

0 commit comments

Comments
 (0)