Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/integrations/sumo-apps/kickstart-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Kickstart Data comes preloaded for new trial users and expires automatically aft

## Application Data

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 Application.
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.

## Installing the Sumo Logic Kickstart Data app

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

<AppUninstall/>

:::note For admins
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).
:::
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,57 @@ Kickstart Data comes preloaded for new trial users and expires automatically aft
| :--- | :--- |
| Initial Data | The source ingests data from 6 hours in the past and 6 hours into the future. |
| Regular Ingestion | Every 6 hours, the source ingests an additional 6 hours of future-dated data to ensure dashboards are always populated. |
| Latency Spike Simulation | The data demonstrate a scenario showcasing latency spikes, aiding in performance analysis and debugging. |
| Latency Spike Simulation | The data demonstrates a scenario showcasing latency spikes, aiding in performance analysis and debugging. |

## Setup

### Source configuration

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).

## Kickstart Data availability and cleanup

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.

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.

:::note
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.
:::

### How to manage or remove Kickstart Data

If you want to prevent Kickstart Data from continuing to ingest or appearing in your searches, you can choose from the following options.

#### Delete the Kickstart collector (recommended)

To stop new Kickstart Data from being ingested every 6 hours:

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**.
1. Locate the collector named `sample_otel_astronomy_shop`.
1. Delete the collector.

This action prevents further sample data from entering your account.

#### Filter Kickstart Data out of search results (optional)

To focus only on your own data in search, use a filter to exclude Kickstart logs by metadata.

Add a line like the following to your query:

```sql
_sourceCategory=custom_data/logs
| where !(_sourceCategory=datagen_otel)
```

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"`.

Use this method if you prefer not to delete the collector or change any partition settings.

#### Need Kickstart Data fully removed?

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.

## FAQ

:::info
Expand Down