Skip to content

Commit 87474bf

Browse files
authored
Merge branch 'main' into macro-operator-docs
2 parents 1cdb94d + b89ef7f commit 87474bf

File tree

774 files changed

+18369
-12608
lines changed

Some content is hidden

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

774 files changed

+18369
-12608
lines changed

.clabot

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,12 @@
168168
"lol3909",
169169
"Hellfire4959",
170170
"antonymartinsumo",
171-
"amee-sumo"
171+
"amee-sumo",
172+
"chetanchoudhary-sumo",
173+
"JamoCA",
174+
"darshan-sumo",
175+
"mahendrak-sumo",
176+
"chvik"
172177
],
173178
"message": "Thank you for your contribution! As this is an open source project, we require contributors to sign our Contributor License Agreement and do not have yours on file. To proceed with your PR, please [sign your name here](https://forms.gle/YgLddrckeJaCdZYA6) and we will add you to our approved list of contributors.",
174179
"label": "cla-signed",

README.md

Lines changed: 64 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,80 @@
88
<a href="https://help.sumologic.com/release-notes-service"><img src="https://img.shields.io/badge/RSS-FFA500?style=for-the-badge&logo=rss&logoColor=white" alt="RSS Follow" width="50"/></a>
99
</p>
1010

11-
Share your knowledge with the Sumo Logic community by contributing to our docs! You can contribute by creating an issue or pull request (PR) on our GitHub repository. We welcome all types of contributions; from minor typo fixes to new topics.
11+
Sumo Docs is the open-source documentation site for Sumo Logic, an all-in-one cloud data analytics platform built to support security, operations, and business intelligence use cases. Sumo Logic empowers users to monitor, analyze, troubleshoot, and visualize data from their applications and network environments in real time. Its elastic processing capabilities enable seamless log data collection and management from various sources, regardless of type, volume, or location. Learn more at [sumologic.com](https://www.sumologic.com).
1212

13-
Documentation staff members review issues and pull requests on a regular basis. We do our best to address all issues as soon as possible, but working through the backlog takes time. We appreciate your patience.
13+
## Get involved
1414

15-
## Contributing Content
15+
We welcome contributions from the community! Whether it's fixing a typo, adding new content, or proposing improvements, your input helps users make the most of Sumo Logic. You can contribute by creating an issue or submitting a pull request in our GitHub repository.
1616

17-
For detailed instructions, including our style guide, see [Contributor Guidelines](https://help.sumologic.com/docs/contributing).
17+
Here’s how to get started:
18+
- Fork our repo and create a new branch for your content changes.
19+
- Preview your edits by building the site locally.
20+
- Submit a pull request for review.
1821

19-
We recommend forking our repo, creating a new branch for your content changes, and submitting a pull request. We will help review, test, and merge the content for publishing.
22+
Our team will help review, test, and merge your contributions for publishing.
2023

21-
## Building Locally
24+
Sumo Docs is built with [Docusaurus 3](https://docusaurus.io/) and supports React, Rehype, and Remark plugins. We also use [cla-bot](https://colineberhardt.github.io/cla-bot/) to manage our Contributor License Agreement (CLA) process.
2225

23-
Docusaurus requires the following to build on locals:
26+
Before submitting an issue or pull request, we recommend reviewing the sections below.
2427

25-
* [NodeJS](https://nodejs.org/en/download/) version >= 16.14
26-
* [Yarn](https://yarnpkg.com/en/) version >= 1.5, you can install with [Homebrew](https://brew.sh/) if you have that installed: `brew install yarn`
28+
## Table of contents
2729

28-
The site includes translations into other languages. To build on your local:
30+
- [Get involved](#get-involved)
31+
- [Prerequisites](#prerequisites)
32+
- [Installation](#installation)
33+
- [Contributing content](#contributing-content)
34+
- [Building locally](#building-locally)
35+
- [Publishing content](#publishing-content)
2936

30-
1. Clone the repo using Git or tools like GitHub Desktop.
31-
1. In a terminal, change to the cloned repo folder. Run the install command: `yarn install`.
32-
1. To serve and review your content, use one of the following:
33-
* Use start, hot reloads as you make changes: `yarn start`. Any issues with broken links and images are listed according to file. Locate and update those issues, then run build and start again to verify.
34-
* Use npm serve to test and review multi-languages: `npm run serve`. This build does not hot reload and requires a rebuild to test and review.
35-
1. To build locally and test your links, run `yarn build`.
37+
## Prerequisites
3638

37-
The static files are generated in the `build` folder and run on your local machine at: `http://localhost:3000/`. To stop the build or served site, hit Ctrl + C to interrupt. You can enter new commands in terminal, rebuild, and restart.
39+
To contribute to Sumo Docs, ensure you have the following tools installed:
3840

39-
Sumo Docs was created using [Docusaurus 2](https://docusaurus.io/) with React, Rehype, and Remark plugin support. Our CLA bot was built using [cla-bot](https://colineberhardt.github.io/cla-bot/).
41+
- [Node.js](https://nodejs.org/en/download/) version 18 or higher
42+
- [Yarn](https://yarnpkg.com/en/), installable via [Homebrew](https://brew.sh/) (`brew install yarn`)
4043

41-
## Publishing Content
44+
## Installation
4245

43-
As pull requests are merged to the `main` branch by the Sumo Logic Doc team, the content builds and deploys to a staging site. This allows you to review and test your content thoroughly on a server, rather than a local build, prior to merging your code to production.
46+
1. Fork and clone the repository using Git or a tool like GitHub Desktop.
47+
2. Navigate to the cloned repository folder:
48+
```bash
49+
cd sumologic-documentation
50+
```
51+
3. Install dependencies:
52+
```bash
53+
yarn install
54+
```
55+
56+
## Apply your changes
57+
58+
Make edits using [Markdown syntax](https://help.sumologic.com/docs/contributing/style-guide/#markdown). Keep contributions concise, informative, and aligned with our guidelines.
59+
60+
Refer to our [Contributor Guidelines](https://help.sumologic.com/docs/contributing/create-edit-doc/#edit-a-doc) for more information on:
61+
- Markdown editing
62+
- Proposing bug fixes
63+
- Testing your changes
64+
65+
All contributions must follow our [Style Guide](https://help.sumologic.com/docs/contributing/style-guide/).
66+
67+
## Building locally
68+
69+
Building the site locally ensures your changes are accurate and functional before submission.
70+
71+
1. Serve and preview your content with hot reloads:
72+
```bash
73+
yarn start
74+
```
75+
Any issues, such as broken links or images, will be listed. Fix them, rebuild, and verify your changes.
76+
77+
2. Build the site and test locally:
78+
```bash
79+
yarn build
80+
```
81+
The static files will be generated in the `build` folder and served at `http://localhost:3000/`.
82+
83+
To stop the local server or build process, press `Ctrl + C`. You can rebuild and restart as needed.
84+
85+
## Publishing content
86+
87+
Our documentation team regularly reviews issues and pull requests. While we strive to address contributions promptly, there may be delays as we work through the backlog. Your patience is appreciated.

blog-collector/2024-01-25.md

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

blog-collector/2024-03-07.md

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

blog-collector/2024-03-18.md

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

blog-collector/2024-07-03.md

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

blog-collector/2024-08-23.md

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

blog-collector/2024-10-31.md

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

blog-collector/2024-11-26.md

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

blog-collector/2024/12-31.md

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
---
2+
title: 2024 Archive
3+
image: https://help.sumologic.com/img/sumo-square.png
4+
---
5+
6+
import useBaseUrl from '@docusaurus/useBaseUrl';
7+
8+
<a href="https://help.sumologic.com/release-notes-collector/rss.xml"><img src={useBaseUrl('img/release-notes/rss-orange2.png')} alt="icon" width="50"/></a>
9+
10+
This is an archive of 2024 Collector Release Notes. To view the full archive, [click here](/release-notes-collector/archive).
11+
12+
<!--truncate-->
13+
14+
---
15+
16+
### November 26, 2024 - Version 19.516-1
17+
18+
In this release, we've enhanced the security and stability of the Collector with added support for security patches.
19+
20+
#### Security Fixes
21+
22+
- Upgraded `Tanuki version` to version 3.5.60 to fix the collector intermittently crashing issue.
23+
- Upgraded collector JRE to **Amazon Corretto Version 8.432.06.1**.
24+
25+
#### Troubleshooting
26+
27+
When upgrading this collector version, the collector running as a non-root user (run as mode) or on a Mac operating system cannot be upgraded through the API/Web UI. To resolve these issue, follow the respective steps below:
28+
- **Collector running as a non-root user.** An error message will be displayed indicating that the upgrade is not possible. The upgrade must be performed manually on your machine. Refer to [Upgrade Collectors in Sumo Logic](/docs/send-data/collection/upgrade-collectors/#upgrade-collectors-using-the-command-line) to upgrade the collector manually.
29+
- **Collector running on Mac.** The process will stop while upgrading, and the collector will need to be restarted manually on your machine. Use the code below to restart manually.
30+
```
31+
sudo ./collector start
32+
```
33+
34+
### October 31, 2024 - Version 19.514-1
35+
36+
In this release, we've enhanced the security and stability of the Collector with added support for security patches and bug fixes.
37+
38+
#### Security Fixes
39+
40+
- Upgraded `com.fasterxml.jackson.core` to version 2.15.4 to address jackson-core vulnerability (CVE-2023-0067).
41+
- Upgraded `org.apache.avro:avro` to version 1.11.4 to address ion-java vulnerability (CVE-2024-47561).
42+
43+
#### Bug Fix
44+
45+
- Fixed the intermittent collector crash issue for AD source.
46+
47+
### August 23, 2024 - Version 19.506-1
48+
49+
In this release, we've enhanced the security and stability of the Collector with added support for security patches and bug fixes.
50+
51+
#### Security Fixes
52+
53+
- Upgraded collector JRE to **Amazon Corretto Version 8.422.05.1**.
54+
- Upgraded `com.amazonaws:aws-java-sdk-s3` to version 1.12.767 to address ion-java vulnerability (CVE-2024-21634).
55+
56+
#### Bug Fix
57+
58+
- Fixed the Docker duplication data re-ingestion issue.
59+
60+
### July 03, 2024 - Version 19.500-2
61+
62+
In this release, we've enhanced the security and stability of the Collector with added support for security patches and bug fixes.
63+
64+
#### Security Fixes
65+
66+
- Upgraded collector JRE to **Amazon Corretto Version 8.412.08.1**.
67+
- Upgraded `Install4j` to version 10 for macOS.
68+
- Upgraded `com.tanuki:wrapper` to version 3.5.56.
69+
- Upgraded `org.apache.commons:commons-configuration2` to version 2.11.0 to address known security vulnerabilities (CVE-2024-29133 and CVE-2024-29131).
70+
- Upgraded `org.bouncycastle:bc-fips` to version 1.2.5.0 to address known security vulnerabilities (CVE-2024-29857).
71+
- Upgraded `org.apache.commons:commons-compress` to version 1.26.1 to address known security vulnerabilities (CVE-2024-26308 and CVE-2024-25710).
72+
- Upgraded `org.bouncycastle:bctls-fips` to version 1.0.19 to address known security vulnerabilities (CVE-2024-30171).
73+
- Upgraded `org.bouncycastle:bcpkix-jdk18on` to version 1.78 to address known security vulnerabilities (CVE-2024-30172, CVE-2024-30171, and CVE-2024-29857).
74+
- Known issues when upgrading to this version:
75+
- **Collector running as non-root user**. Collector running as non-root user (run as mode) cannot be upgraded through the API/Web UI. It display an error message indicating that the upgrade is not possible. The upgrade must be performed manually on your machine. Follow the [steps to upgrade manually](/docs/send-data/collection/upgrade-collectors/#upgrade-collectors-using-the-command-line).
76+
- **Collector running on Mac**. Collector running on a Mac operating system cannot be upgraded through the API/Web UI. The process will stop, and the collector will need to be restarted manually on your machine if upgraded using API or Web UI. Use the below code to manually restart.
77+
```
78+
sudo ./collector start
79+
```
80+
81+
#### Bug Fix
82+
83+
- Fixed the collector start issue by cleaning the temporary files on Windows.
84+
- Fixed the issue with starting the collector on Linux RHEL OS (version 8.3 and above) with OS-level FIPS mode enabled.
85+
86+
### March 18, 2024 - Version 19.484-2
87+
88+
In this release, we've upgraded the collector JRE to **Amazon Corretto Version 8.402.08.1** to enhance stability and optimize performance for faster execution.
89+
90+
### March 07, 2024 - Version 19.484-1
91+
92+
In this release, we've enhanced the **Amazon Corretto** back-end support for minor version updates.
93+
94+
### January 25, 2024 - Version 19.478-2
95+
96+
In this release, we've enhanced the security and stability of the Collector with added support for security patches and bug fixes.
97+
98+
#### Security Fixes
99+
100+
- Upgraded collector JRE to **Amazon Corretto Version 8.402.06.1**.
101+
- Upgraded `Install4j` to version 10.0.6 for Linux arch.
102+
- Upgraded `org.json:json` to version 20231013 to address known security vulnerabilities (CVE-2023-5072).
103+
- Upgraded `org.apache.avro:avro` to 1.11.3 to address known security vulnerabilities (CVE-2023-39410).
104+
- Upgraded `bcprov-jdk15on` to `bcprov-jdk18on` to address known security vulnerabilities (CVE-2023-33201).
105+
106+
#### Bug Fix
107+
108+
- Fixed the issue with Docker Stats Source that was causing metrics to be missing in particular cases.

0 commit comments

Comments
 (0)