Skip to content

Commit d81a278

Browse files
committed
Updates from meeting with Arpit
1 parent cc3da3d commit d81a278

File tree

12 files changed

+17
-534
lines changed

12 files changed

+17
-534
lines changed

blog-service/2024-06-24-manage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
1313

1414
In November 2020, we introduced Ingest Budgets V2, offering greater flexibility and granularity in metadata and fields within the ingest budget definition. Despite this update, existing V1 budgets continued to function as originally defined while only allowing V2 budgets for all new configurations going forward.
1515

16-
**On September 9. 2024**, Sumo Logic will deprecate and remove the existing V1 Ingest Budgets that remain defined in customer instances.
16+
V1 Ingest Budgets are deprecated, and **On September 9. 2024**, Sumo Logic will remove the existing V1 Ingest Budgets that remain defined in customer instances.
1717

1818
To ensure uninterrupted service, review your current ingest budgets under **Manage Data > Collection > Ingest Budgets**. Identify any budgets tagged as V1 and, if still needed, [edit and upgrade them to V2](/docs/manage/ingestion-volume/ingest-budgets/daily-volume/#versions) before the deprecation date.
1919

docs/api/ingest-budget-v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import ApiRoles from '../reuse/api-roles.md';
1414
The Ingest Budget Management V2 APIs allow you to manage metadata-based [ingest budgets](/docs/manage/ingestion-volume/ingest-budgets) (with a scope) from HTTP endpoints.
1515

1616
:::note
17-
Ingest Budget Management V1 APIs have been deprecated.
17+
Ingest Budget Management V1 APIs have been removed and are no longer supported.
1818
:::
1919

2020
## Prerequisites

docs/manage/ingestion-volume/ingest-budgets/daily-volume/index.md renamed to docs/manage/ingestion-volume/ingest-budgets/daily-volume.md

Lines changed: 8 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
---
2-
slug: /manage/ingestion-volume/ingest-budgets/daily-volume
2+
id: daily-volume
33
title: Daily Volume
44
description: Control the capacity of daily log ingestion volume sent to Sumo Logic from Collectors.
55
---
66

7+
import useBaseUrl from '@docusaurus/useBaseUrl';
8+
9+
:::note
10+
If you want to use APIs to manage ingest budgeting, you must use [Ingest Budget Management V2 APIs](/docs/api/ingest-budget-v2/). Ingest Budget Management V1 APIs have been removed and are no longer supported.
11+
:::
12+
713
Ingest budgets control the daily volume of log data sent to Sumo Logic. Log data can be assigned to an ingest budget that defines a daily log capacity limit. The capacity is tracked based on the combined volume from all sources of log data. When an ingest budget's capacity is reached you can have Sumo Logic stop collecting the log data assigned to it to control costs.
814

915
Ingest budgets automatically reset their capacity utilization tracking every 24 hours based on the time and time zone you specify. For example, you can schedule an ingest budget to refresh every day at 02:00 in the America/Los_Angeles time zone. You can manually [reset an ingest budget](#reset-ingest-budget) at any time.
@@ -42,26 +48,7 @@ For example, a **Scope** expression like `_sourceCategory=/dev/catalog/*` im
4248

4349
See more [budget assignment examples](#budget-assignment-examples) below and review the [rules](#rules) above.
4450

45-
## Versions
46-
<!-- impacted by v1 deprecation -->
47-
There are two versions of ingest budgets:
48-
49-
* V1 ingest budgets are older and have a **Field Value** for Collector assignment. They are shown with a **V1** in the **Name** cell.<br/> ![v1 budget tag.png](/img/manage/ingestion-volume/v1-budget-tag.png)
50-
* V2 ingest budgets provide you the ability to assign budgets to your log data by either [Fields](/docs/manage/fields) or the following [built in metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) fields, `_collector`, `_source`, `_sourceCategory`, `_sourceHost`, and `_sourceName`.
51-
52-
53-
## Migrating V1 budgets to V2
54-
55-
<!-- impacted by v1 deprecation -->
56-
* You can edit an existing **V1** budget by providing a **scope** to change it to a **V2** budget that is metadata-based.
57-
* V2 budgets are manageable with the [Ingest Budget Management **V2** API](/docs/api/ingest-budget-v2).
58-
* V1 budgets will be deprecated on September 16, 2024.
59-
60-
61-
Stopping collection differences:
62-
63-
* First version ingest budgets take around 30 seconds to stop collecting when capacity is reached. We recommend setting a soft limit that is lower than your needed hard limit.
64-
* Second version ingest budgets drop data instantly once capacity is reached.
51+
[V2 ingest budgets](/docs/api/ingest-budget-v2/) provide you the ability to assign budgets to your log data by either [fields](/docs/manage/fields) or the following [built in metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) fields, `_collector`, `_source`, `_sourceCategory`, `_sourceHost`, and `_sourceName`.
6552

6653
## Source type behavior
6754

@@ -296,23 +283,3 @@ _index=sumologic_system_events "IngestBudget"
296283
| where eventType = "Health-Change" AND resourceType = "IngestBudget" and severity="Warning"
297284
```
298285

299-
import useBaseUrl from '@docusaurus/useBaseUrl';
300-
301-
## Guide contents
302-
303-
In this section, we'll introduce the following concepts:
304-
305-
<div className="box-wrapper">
306-
<div className="box smallbox card">
307-
<div className="container">
308-
<a href="/docs/manage/ingestion-volume/ingest-budgets/daily-volume/assign-collector-ingest-budget"><img src={useBaseUrl('img/icons/operations/data-volume.png')} alt="icon" width="40"/><h4>Assign Collector to Ingest Budget</h4></a>
309-
<p>Learn how to assign a Collector to an Ingest Budget.</p>
310-
</div>
311-
</div>
312-
<div className="box smallbox card">
313-
<div className="container">
314-
<a href="/docs/manage/ingestion-volume/ingest-budgets/daily-volume/quickstart"><img src={useBaseUrl('img/icons/operations/data-volume.png')} alt="icon" width="40"/><h4>Ingest Budgets Quickstart Tutorial</h4></a>
315-
<p>Learn how to create and use Ingest Budgets.</p>
316-
</div>
317-
</div>
318-
</div>

docs/manage/ingestion-volume/ingest-budgets/daily-volume/assign-collector-ingest-budget.md

Lines changed: 0 additions & 172 deletions
This file was deleted.

0 commit comments

Comments
 (0)