Skip to content

Commit fb19c2b

Browse files
authored
Merge branch 'main' into docs-888-more-improvements-to-automation-integrations
2 parents 397ce8a + 93d53f2 commit fb19c2b

File tree

7 files changed

+65
-11
lines changed

7 files changed

+65
-11
lines changed

docs/apm/traces/search-query-language-support-for-traces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ A Keyword Search Expression defines the scope of data for the query. You need to
3939

4040
In scenarios where users are not familiar with the schema and would like to search across all the fields, `_any` modifier provides a means to search for a specified value from all of the Ingest Time Fields in your data. For example, to search for data with any field that has a value of success you would put `_any=success` in the scope of your query.
4141

42-
Syntax: `_any<value>`
42+
Syntax: `_any=<value>`
4343

4444
The `_any` option is not supported outside of the scope of a query. This is supported for the Security and Tracing tiers.
4545

docs/integrations/google/cloud-iam.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ _collector="HTTP Source for GCP Pub/Sub" logName resource timestamp
9191
| where type = "project" and log_name matches "projects/*/logs/cloudaudit.googleapis.com%2Factivity"
9292
| timeslice 1h
9393
| json "message.data.resource.labels", "message.data.resource.labels.project_id", "message.data.protoPayload.serviceData.policyDelta.bindingDeltas[*]" as labels, project, changes
94-
| parse regex field=changes "\"role\":\"roles\\\/(?<role>[a-zA-Z.]+)\",\"member\":\".*\",\"action\":\"(?<action>[A-Z]+)\"" multi
94+
| parse regex field=changes "\"role\":\"roles\/(?<role>[a-zA-Z.]+)\",\"member\":\".*\",\"action\":\"(?<action>[A-Z]+)\"" multi
9595
| where action="ADD"
9696
| count by _timeslice, role
9797
| transpose row _timeslice column role
@@ -258,4 +258,4 @@ import AppUpdate from '../../reuse/apps/app-update.md';
258258

259259
import AppUninstall from '../../reuse/apps/app-uninstall.md';
260260

261-
<AppUninstall/>
261+
<AppUninstall/>

docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing
1818
* **Data Transform** (*Custom*) - Provides various functions to more easily transform data in a playbook. See [Data Transfer example](#data-transform).
1919
* **Build JSON Object** (*Custom*) - Provide the action with JSON key placeholder or string to build a new JSON object with the specified key/values. See [Build JSON Object example](#build-json-object).
2020
* **Build Signal Output** (*Custom*) - Converts the Sumo Logic SIEM Signal JSON object to HTML or plain text with line breaks. See [Build Signal Output example](#build-signal-output).
21+
* **Scaled Decimal to Percentage** (*Custom*) - Converts a scaled decimal values between 0 and 1 into a percentage. See [Scaled Decimal to Percentage](#scaled-decimal-to-percentage).
2122

2223
## Actions usage
2324

@@ -396,10 +397,50 @@ Break Lines
396397
}
397398
```
398399

400+
### Scaled Decimal to Percentage
401+
402+
```css
403+
INPUT = "1"
404+
```
405+
```css
406+
OUTPUT = {
407+
"cs_val": "100%"
408+
}
409+
```
410+
411+
```css
412+
INPUT = "0.1"
413+
```
414+
```css
415+
OUTPUT = {
416+
"cs_val": "10%"
417+
}
418+
```
419+
420+
```css
421+
INPUT = "0.01"
422+
```
423+
```css
424+
OUTPUT = {
425+
"cs_val": "1%"
426+
}
427+
```
428+
429+
```css
430+
INPUT = ".5"
431+
```
432+
```css
433+
OUTPUT = {
434+
"cs_val": "50%"
435+
}
436+
```
437+
438+
399439
## Configure Sumo Logic Automation Tools in Automation Service and Cloud SOAR
400440

401441
No configuration is needed. Sumo Logic Automation Tools executes without additional authentication.
402442

403443
## Change log
404444

405-
* Nov 11, 2024 - Beta version released.
445+
* Nov 11, 2024 - Beta version released.
446+
* May 23, 2024 - Introduced the new "Scaled Decimal to Percentage" action, which converts a scaled decimal value into a percentage.

docs/search/search-cheat-sheets/log-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Sumo provides a number of ways to [parse](/docs/search/search-query-language/pa
3232
<tr>
3333
<td><a href="/docs/search/search-query-language/parse-operators/parse-keyvalue-formatted-logs">keyvalue</a></td>
3434
<td>Typically, log files contain information that follow a key-value pair structure. The keyvalue operator allows you to get values from a log message by specifying the key paired with each value.</td>
35-
<td><code>| keyvalue infer "module", "thread"</code></td>
35+
<td><code>| keyvalue "module", "thread"</code></td>
3636
</tr>
3737
<tr>
3838
<td><a href="/docs/search/search-query-language/parse-operators/parse-csv-formatted-logs">csv</a></td>

docs/send-data/opentelemetry-collector/remote-management/source-templates/linux/changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ sidebar_label: Changelog
55
description: Changelog for Linux source template for OpenTelemetry.
66
---
77

8+
## [5.0.0] - 2025-04-30
9+
### Fixed
10+
- Validation for choosing at least one scraper when metric section is enabled.
11+
812
## [4.0.2] - 2025-04-23
913
### Added
10-
- FAQ for source template
14+
- FAQ for source template.
1115

1216
## [4.0.1] - 2025-01-27
1317
### Fixed
14-
- Schema validations
18+
- Schema validations.
1519

1620
## [4.0.0] - 2024-10-26
1721

docs/send-data/opentelemetry-collector/remote-management/source-templates/mac/changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ sidebar_label: Changelog
55
description: Changelog for Mac source template for OpenTelemetry.
66
---
77

8+
## [5.0.0] - 2025-04-30
9+
### Fixed
10+
- Validation for choosing at least one scraper when metric section is enabled.
11+
812
## [4.0.2] - 2025-04-23
913
### Added
10-
- FAQ for source template
14+
- FAQ for source template.
1115

1216
## [4.0.1] - 2025-01-27
1317
### Fixed
14-
- Schema validations
18+
- Schema validations.
1519

1620
## [4.0.0] - 2024-10-26
1721

docs/send-data/opentelemetry-collector/remote-management/source-templates/windows/changelog.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,20 @@ sidebar_label: Changelog
55
description: Changelog for Windows source template for OpenTelemetry.
66
---
77

8+
## [7.0.0] - 2025-04-30
9+
### Fixed
10+
- Validation for choosing at least one scraper when metric section is enabled.
11+
- Validation for choosing at least one event source when log section is enabled.
12+
813
## [6.1.2] - 2025-04-23
914
### Added
10-
- FAQ for source template
15+
- FAQ for source template.
1116
### Fixed
1217
- Warning for channel name addition in custom channel list.
1318

1419
## [6.1.1] - 2025-01-27
1520
### Fixed
16-
- Schema validations
21+
- Schema validations.
1722

1823
## [6.1.0] - 2024-10-26
1924
### Added

0 commit comments

Comments
 (0)