Skip to content

Commit 60a17bf

Browse files
authored
Merge branch 'main' into docs-836-left-nav-reorg
2 parents d64a424 + ff4f633 commit 60a17bf

File tree

8 files changed

+68
-2
lines changed

8 files changed

+68
-2
lines changed
File renamed without changes.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: Download a collector using the CDN URL (Installed Collector)
3+
image: https://help.sumologic.com/img/reuse/rss-image.jpg
4+
keywords:
5+
- installed-collector
6+
- download-collector
7+
hide_table_of_contents: true
8+
---
9+
10+
We’re pleased to announce a new method for downloading the latest version of our installed collectors. While the static URL method is still available, you now have the option to use a CDN URL via UI for better performance.
11+
12+
:::info
13+
This change does not affect the UI itself. The download process looks the same, but the underlying URL now uses a CDN to improve reliability and speed.
14+
:::
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Version 19.525-59 (Installed Collector)
3+
hide_table_of_contents: true
4+
image: https://help.sumologic.com/img/reuse/rss-image.jpg
5+
---
6+
7+
import useBaseUrl from '@docusaurus/useBaseUrl';
8+
9+
In this release, we've upgraded the collector JRE to **Amazon Corretto Version `8.462.08.1`** to enhance security and optimize performance for faster execution.

blog-service/2025-08-31-apps.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: Apps, Solutions, and Collection Integrations - August Release
3+
image: https://help.sumologic.com/img/reuse/rss-image.jpg
4+
keywords:
5+
- apps
6+
- august-release
7+
hide_table_of_contents: true
8+
---
9+
10+
import useBaseUrl from '@docusaurus/useBaseUrl';
11+
12+
13+
14+
### New release
15+
16+
We’re excited to announce the release of the new Azure Event Hubs app and OpenTelemetry Collector Insights app for Sumo Logic.
17+
18+
- **Azure Event Hubs**. The Azure Event Hubs app helps monitor data plane operations, such as sending or receiving events, and tracks performance metrics, including consumer lag, throughput, and active connections. [Learn more](/docs/integrations/microsoft-azure/azure-event-hubs/).
19+
- **OpenTelemetry Collector Insights**. The OpenTelemetry Collector Insights app provides end-to-end monitoring for your OpenTelemetry Collector instances, enabling you to track performance, data flow, and resource utilization. Use preconfigured dashboards and alerts to troubleshoot issues and ensure your telemetry pipeline runs smoothly and efficiently. [Learn more](/docs/integrations/sumo-apps/opentelemetry-collector-insights/).
20+
21+
### Enhancements
22+
23+
- **Azure Virtual Machine**. Automated Metric Rule creation during app install. [Learn more](/docs/integrations/microsoft-azure/azure-virtual-machine/#installing-the-azure-virtual-machine-app).
24+
- **CircleCI Integration**. Updated the CircleCI integration to handle the BLOCKED job state.
25+
- **AWS Serverless Application Model (SAM)**. Released the following SAM:
26+
- `sumologic-app-utils` - SemanticVersion 2.0.21
27+
- `sumologic-s3-logging-auto-enable` - SemanticVersion 1.0.18
28+
- `sumologic-guardduty-benchmark` - SemanticVersion 1.0.18
29+
- `sumologic-aws-cloudtrail-benchmark` - SemanticVersion 1.0.21
30+
- **Windows ST**. A flag to prevent the collector from shutting down when it fails to open the event log channel; instead, it logs a warning.
31+
32+
### Bug Fixes
33+
34+
- **Groovy script of Jenkins plugin**. The Groovy script used in the Jenkins plugin has been updated to automate input handling with the correct data type.
35+
- **Jenkins plugin**. Released with dependency upgrades and vulnerability fixes.

docs/dashboards/panels/table-charts.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ To add a panel with a table chart:
3030

3131
To create a metrics query utilize the [Metrics Search](/docs/metrics/metrics-queries).
3232

33-
1. Once the query runs you will need to flip the chart type to **Table**.<br/><img src={useBaseUrl('/img/dashboards/panels/table-charts/new-table-chart.png')} alt="new table chart" style={{border: '1px solid gray'}} width="700" />
33+
1. Once the query runs, you will need to flip the chart type to **Table**.
34+
1. (Optional) **Missing Data Display**. Enter the text that needs to be displayed when data is missing.
35+
1. (Optional) **Font Size**. Font size of the text displayed. By default, `12` is set as font size. You can change this based on your requirement.
36+
1. (Optional) **Decimals**. Sets the precision of units displayed. Select the number of decimals to show with a unit, up to 10.
37+
1. (Optional) **Rows Per Page**. Set the numbers of rows to display in the table.<br/><img src={useBaseUrl('/img/dashboards/panels/table-charts/new-table-chart.png')} alt="new table chart" style={{border: '1px solid gray'}} width="800" />
3438
1. [Modify the chart](./modify-chart.md) as desired.
3539
1. Click the **Add to Dashboard** button on the top right of the window to add the panel to your dashboard.<br/><img src={useBaseUrl('/img/dashboards/create-dashboard/Add-to-Dashboard-button.png')} alt="Add to Dashboard button" style={{border: '1px solid gray'}} width="300" />
3640

docs/search/query-assist.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
88

99
Query Assist enhances the query-building experience in Sumo Logic by providing real-time syntax suggestions, schema prompts, and partial query predictions. These enhancements simplify the process for users at all skill levels, making it easier to write accurate and efficient queries, enabling easier discovery of relevant fields, minimizing errors, and providing intelligent assistance for query creation. The suggestions that appear comply with the user's role-based access restrictions.
1010

11+
:::info
12+
Logs Query Assist is also supported in [Dashboards](/docs/dashboards) and [Scheduled Searches](/docs/alerts/scheduled-searches).
13+
:::
14+
1115
<img src={useBaseUrl('img/search/get-started-search/query-assist-preview1.gif')} alt="query assist demo gif" style={{border: '1px solid gray'}} width="700"/>
1216

1317
## Key enhancements

docs/search/search-query-language/search-operators/geoip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ all the optional fields or choose a subset:
3636
* state_cf
3737
* city_cf
3838

39-
Details of these data fields can be found in [Neustar's documentation](/files/IP-Geo-Point-Data-Glossary.pdf) under the GeoPoint Data Glossary topic.
39+
Details of these data fields can be found in <a href="/files/IP-Geo-Point-Data-Glossary.pdf" target="_blank">Neustar's documentation</a> under the GeoPoint Data Glossary topic.
4040

4141
## Syntax to Map
4242

-13.8 KB
Loading

0 commit comments

Comments
 (0)