Skip to content

Commit 8c67d34

Browse files
authored
Merge branch 'main' into docs-72-cloud-siem-rule-limits
2 parents c16cdfa + 34b0469 commit 8c67d34

File tree

489 files changed

+7145
-2351
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+7145
-2351
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Build and Deploy
22

3+
permissions:
4+
contents: read
5+
36
on:
47
workflow_call:
58
inputs:
@@ -13,7 +16,7 @@ on:
1316
default: "/"
1417
type: string
1518
environment:
16-
description: GHA environment name
19+
description: GitHub Actions environment name (used for scoping secrets and deployment)
1720
required: true
1821
type: string
1922
secrets:
@@ -35,6 +38,7 @@ jobs:
3538
env:
3639
CI: true
3740
NODE_ENV: production
41+
NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192"
3842
AWS_PAGER: ""
3943
HOSTNAME: ${{ inputs.hostname }}
4044
BASE_URL: ${{ inputs.base_url }}
@@ -53,16 +57,14 @@ jobs:
5357
uses: actions/cache@v3
5458
with:
5559
path: node_modules/.cache
56-
key: ${{ runner.os }}-webpack-cache
60+
key: ${{ runner.os }}-webpack-cache-${{ hashFiles('yarn.lock') }}
5761
- name: Install awscli
5862
uses: unfor19/install-aws-cli-action@v1
5963
- name: Install jq
6064
run: sudo apt-get install -y jq
6165
- name: Install dependencies
6266
run: yarn install --frozen-lockfile
6367
- name: Build the Docusaurus site
64-
env:
65-
NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192"
6668
run: yarn build
6769
- name: Deploy the Docusaurus site
6870
env:

.github/workflows/delete-review.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: delete-review
22

3+
permissions:
4+
contents: read
5+
36
on: delete
47

58
jobs:
@@ -9,6 +12,7 @@ jobs:
912
name: review/${{ github.ref_name }}
1013
env:
1114
CI: true
15+
NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192"
1216
AWS_PAGER: ""
1317
BASE_URL: /${{ github.ref_name }}/
1418
AWS_DEFAULT_REGION: us-east-1
@@ -23,6 +27,7 @@ jobs:
2327
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
2428
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
2529
run: |
30+
echo "Removing files at s3://${S3_BUCKET_NAME}${BASE_URL}"
2631
aws s3 rm --recursive s3://${S3_BUCKET_NAME}${BASE_URL}
2732
export INVALIDATION_ID=$(
2833
aws cloudfront create-invalidation \

.github/workflows/pr.yml

Lines changed: 36 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,44 @@
11
name: Pull Request Checks
22

3+
permissions:
4+
contents: read
5+
pull-requests: read
6+
37
on:
4-
pull_request:
5-
branches:
6-
- main
7-
merge_group:
8-
types:
9-
- checks_requested
8+
pull_request:
9+
branches:
10+
- main
11+
merge_group:
12+
types:
13+
- checks_requested
14+
15+
env:
16+
CI: true
17+
NODE_ENV: production
18+
NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192"
1019

1120
jobs:
12-
build-and-deploy:
13-
runs-on: ubuntu-latest
14-
env:
15-
CI: true
16-
NODE_ENV: production
17-
steps:
18-
- uses: actions/checkout@v4
19-
- name: Set up Node.js
20-
uses: actions/setup-node@v3
21-
with:
22-
node-version: '20.x'
23-
cache: 'yarn'
24-
- name: Docusaurus Webpack cache
25-
uses: actions/cache@v3
26-
with:
27-
path: node_modules/.cache
28-
key: ${{ runner.os }}-webpack-cache
29-
- name: Install dependencies
30-
run: yarn install --frozen-lockfile
31-
- name: Build the Docusaurus site
32-
env:
33-
NODE_OPTIONS: "--max-old-space-size=8192 --max-http-header-size=8192"
34-
run: yarn build
35-
spellcheck:
36-
runs-on: ubuntu-latest
37-
steps:
21+
build-and-deploy:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- name: Set up Node.js
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: '20.x'
29+
cache: 'yarn'
30+
- name: Docusaurus Webpack cache
31+
uses: actions/cache@v3
32+
with:
33+
path: node_modules/.cache
34+
key: ${{ runner.os }}-webpack-cache-${{ hashFiles('yarn.lock') }}
35+
- name: Install dependencies
36+
run: yarn install --frozen-lockfile
37+
- name: Build the Docusaurus site
38+
run: yarn build
39+
spellcheck:
40+
runs-on: ubuntu-latest
41+
steps:
3842
- uses: actions/checkout@v4
3943
- uses: codespell-project/actions-codespell@master
4044
name: Check spelling

.github/workflows/production.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: deploy-to-production
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
branches:

blog-collector/2023/12-31.md

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,19 @@ image: https://help.sumologic.com/img/sumo-square.png
55

66
import useBaseUrl from '@docusaurus/useBaseUrl';
77

8-
9-
108
This is an archive of 2023 Collector Release Notes. To view the full archive, [click here](/release-notes-collector/archive).
119

1210
<!--truncate-->
1311

1412
---
15-
### November 13, 2023 - Version 19.467-2
13+
### December 18, 2023 (OpenTelemetry Collector)
14+
15+
#### Auto Discovery
16+
17+
We're excited to announce our new **Auto Discovery for OpenTelemetry** feature, which automatically detects the services that can be installed to monitor the data collected from the server on which the collector is running. [Learn more](/docs/send-data/opentelemetry-collector/auto-discovery).
18+
19+
---
20+
### November 13, 2023 - Version 19.467-2 (Installed Collector)
1621

1722
In this release, we've enhanced the security and stability of the Collector with added support for security patches and bug fixes.
1823

@@ -30,13 +35,13 @@ In this release, we've enhanced the security and stability of the Collector with
3035
- Fixed temporary files issue in Windows installation.
3136

3237
---
33-
### October 26, 2023 - Version 19.461-1
38+
### October 26, 2023 - Version 19.461-1 (Installed Collector)
3439

3540
In this release, we've resolved the collector start issue that was occurring after the Windows feature update. For collectors running as custom user, refer to the [Advanced UI Installer Settings](/docs/send-data/installed-collectors/collector-installation-reference/advanced-ui-installer-settings#provide-full-control-access-for-custom-user) to provide full access to custom user.
3641

3742

3843
---
39-
### August 22, 2023 - Version 19.456-3
44+
### August 22, 2023 - Version 19.456-3 (Installed Collector)
4045

4146
In this release, we've enhanced our Collector security and stability by adding support for security patches and bug fixes.
4247

@@ -52,18 +57,18 @@ In this release, we've enhanced our Collector security and stability by adding s
5257

5358

5459
---
55-
### July 11, 2023 - Version 19.451-1
60+
### July 11, 2023 - Version 19.451-1 (Installed Collector)
5661

5762
* **Bug fix**. Log level for message `AppendStringInfo` is updated from info to debug.
5863
* **Security fix**. Upgraded `org.json:json` to version 20230227 to address known security vulnerabilities (CVE-2022-45688).
5964

6065
---
61-
### May 23, 2023 - Version 19.441-2
66+
### May 23, 2023 - Version 19.441-2 (Installed Collector)
6267

6368
In this release, we've upgraded the collector JRE to **Amazon Corretto Version 8.372.07.1** to enhance reliability and stability, and optimized performance for faster execution.
6469

6570
---
66-
### May 5, 2023 - Version 19.441-1
71+
### May 5, 2023 - Version 19.441-1 (Installed Collector)
6772

6873
In this release, we've enhanced the security and stability of Collector with added support for security patches and bug fixes.
6974

@@ -82,13 +87,29 @@ In this release, we've enhanced the security and stability of Collector with add
8287

8388

8489
---
85-
### April 20, 2023 - Version 19.418-8
90+
### April 20, 2023 - Version 19.418-8 (Installed Collector)
8691

8792
We're pleased to announce that the bridge version now offers enhanced support for the BCTLS FIPS upgrade.
8893

8994

9095
---
91-
### March 15, 2023 - Version 19.418-7
96+
### March 28, 2023 (OpenTelemetry Collector)
97+
98+
#### Sumo Logic Distribution for OpenTelemetry
99+
100+
New - We’re happy to announce a release that saves you configuration time. Our new and improved OpenTelemetry collector data onboarding workflow that gets you up and running with infrastructure monitoring in minutes. With this update, you can start monitoring host and process data, web servers (like IIS, Nginx), databases (like MySQL, Redis, Cassandra), and other sources out of the box - no manual configuration required. [Learn more](/docs/get-started/quickstart).
101+
102+
The Sumo Logic Distribution for OpenTelemetry, a single unified agent to send Logs, Metrics, Traces, and Metadata, helps simplify and streamline Observability and debugging to improve overall system reliability and efficiency. [Learn more](/docs/send-data/opentelemetry-collector).
103+
104+
:::note
105+
The new onboarding workflows are only available for new Trial customers at this time.
106+
:::
107+
108+
<img src={useBaseUrl('img/send-data/opentelemetry-collector/otel-onboarding.gif')} alt="OpenTelemetry collector onboarding flow" />
109+
110+
111+
---
112+
### March 15, 2023 - Version 19.418-7 (Installed Collector)
92113

93114
In this release, we've enhanced the security and stability of Collector with added support for security patch and bug fix.
94115

blog-service/2025-01-08-otel-remote-management.md renamed to blog-collector/2025-01-08-otel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Remote Management for OpenTelemetry Collector (Collection)
2+
title: Remote Management for OpenTelemetry Collector (OpenTelemetry Collector)
33
image: https://help.sumologic.com/img/sumo-square.png
44
keywords:
55
- collection
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
---
2-
title: Version 19.525-1
2+
title: Version 19.525-1 (Installed Collector)
33
hide_table_of_contents: true
44
image: https://help.sumologic.com/img/sumo-square.png
55
---
66

77
import useBaseUrl from '@docusaurus/useBaseUrl';
88

9-
10-
119
In this release, we've upgraded the collector JRE to **Amazon Corretto Version `8.442.06.1`** to enhance stability and optimize performance for faster execution.

blog-collector/2025-05-14.md renamed to blog-collector/2025-05-14-installed.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Version 19.525-42
2+
title: Version 19.525-42 (Installed Collector)
33
hide_table_of_contents: true
44
image: https://help.sumologic.com/img/sumo-square.png
55
---
@@ -14,4 +14,4 @@ In this release, we've enhanced the security and stability of the Collector with
1414

1515
## Bug Fix
1616

17-
- Fixed the improper filtering of `AD` objects when `Exclude Distinguished Name Suffixes` filter is configured.
17+
- Fixed the improper filtering of `AD` objects when `Exclude Distinguished Name Suffixes` filter is configured.

blog-cse/2025-05-30-content.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: May 30, 2025 - Content Release
3+
image: https://help.sumologic.com/img/sumo-square.png
4+
keywords:
5+
- log mappers
6+
- parsers
7+
- rules
8+
hide_table_of_contents: true
9+
---
10+
11+
import useBaseUrl from '@docusaurus/useBaseUrl';
12+
13+
This content release includes:
14+
- Rule updates.
15+
- New log parsers and mappers to support Akamai CPC and Contrast Security ADR.
16+
- New and updated log mappers for Azure Event Hub - Windows Defender logs, Cisco ISE, Microsoft Office 365, and Snowflake.
17+
- Modifications to existing parsers for Microsoft Azure JSON, Nginx Syslog, and Snowflake to support additional formats and events.
18+
19+
Changes are enumerated below.
20+
21+
### Rules
22+
- [Updated] MATCH-S00068 O365 - Users Password Changed
23+
- Updated entity selectors to include both `user_username` and `targetUser_username`
24+
- [Updated] MATCH-S00069 O365 - Users Password Reset
25+
- Updated entity selectors to include both `user_username` and `targetUser_username`
26+
27+
### Log Mappers
28+
- [New] Akamai CPC
29+
- [New] Azure Event Hub - Windows Defender Audit events
30+
- [New] Azure Event Hub - Windows Defender Audit file events
31+
- [New] Azure Event Hub - Windows Defender Authentication events
32+
- [New] Azure Event Hub - Windows Defender Email events
33+
- [New] Azure Event Hub - Windows Defender Endpoint Process events
34+
- [New] Azure Event Hub - Windows Defender Network events
35+
- [New] Contrast Security ADR Default Mapping
36+
- [New] Snowflake Query History
37+
- [New] Snowflake Session
38+
- [Updated] Azure Event Hub - Windows Defender Logs - DeviceAlertEvents
39+
- [Updated] Azure Event Hub - Windows Defender Logs and Azure Alert
40+
- [Updated] Cisco ISE Catch All
41+
- [Updated] Microsoft Office 365 Active Directory Authentication Events
42+
- [Updated] Snowflake Catch All
43+
- [Updated] Snowflake Login
44+
45+
### Parsers
46+
- [New] /Parsers/System/Akamai/Akamai CPC
47+
- [New] /Parsers/System/Contrast Security/Contrast ADR
48+
- [Updated] /Parsers/System/Cisco/Cisco ISE
49+
- [Updated] /Parsers/System/Microsoft/Microsoft Azure JSON
50+
- [Updated] /Parsers/System/Nginx/Nginx Syslog
51+
- [Updated] /Parsers/System/Microsoft/Office 365
52+
- [Updated] /Parsers/System/Snowflake/Snowflake
53+
- [Updated] /Parsers/System/Microsoft/Windows PowerShell-JSON
54+
- [Updated] /Parsers/System/Microsoft/Windows-JSON-Open Telemetry

blog-cse/2025-06-02-application.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: June 2, 2025 - Application Update
3+
image: https://help.sumologic.com/img/sumo-square.png
4+
keywords:
5+
- outlier rules
6+
- first seen rules
7+
- baseline
8+
hide_table_of_contents: true
9+
---
10+
11+
import useBaseUrl from '@docusaurus/useBaseUrl';
12+
13+
### New method for building baselines
14+
15+
We're happy to announce that now when you create or update a first seen or outlier rule, the baseline starts building immediately using existing system data. Typically, the baseline is ready within minutes. You no longer need to wait days for a baseline learning period to complete before it becomes usable. This change enables you to gain insights faster and iterate on your first seen and outlier rules rapidly, reducing tuning time from weeks to minutes.
16+
17+
To learn more, see our information about baselines for [first seen rules](/docs/cse/rules/write-first-seen-rule/) and [outlier rules](/docs/cse/rules/write-outlier-rule/#baselines-for-outlier-rules).
18+
19+
:::note
20+
* This feature update applies only to new and changed first seen and outlier rules. Unchanged existing rules will continue to use their existing baselines.
21+
* This feature update is rolling out across deployments incrementally and will be available on all deployments by June 12, 2025.
22+
:::

0 commit comments

Comments
 (0)