Skip to content

Commit 93d53f2

Browse files
CSOAR-3196: Issue with Global Confidence Score display (#5402)
* CSOAR-3196: Added action for converting scaled decimal values to percentage * Updates from review --------- Co-authored-by: John Pipkin <[email protected]>
1 parent 662c694 commit 93d53f2

File tree

1 file changed

+42
-1
lines changed

1 file changed

+42
-1
lines changed

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.

0 commit comments

Comments
 (0)