You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md
+42-1Lines changed: 42 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing
18
18
***Data Transform** (*Custom*) - Provides various functions to more easily transform data in a playbook. See [Data Transfer example](#data-transform).
19
19
***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).
20
20
***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).
21
22
22
23
## Actions usage
23
24
@@ -396,10 +397,50 @@ Break Lines
396
397
}
397
398
```
398
399
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
+
399
439
## Configure Sumo Logic Automation Tools in Automation Service and Cloud SOAR
400
440
401
441
No configuration is needed. Sumo Logic Automation Tools executes without additional authentication.
402
442
403
443
## Change log
404
444
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