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
Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing and automation.
14
14
@@ -19,6 +19,7 @@ Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing
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
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).
22
+
***Convert Time** (*custom*) - Converts timestamps to the selected timezone.
22
23
23
24
## Actions usage
24
25
@@ -435,6 +436,20 @@ OUTPUT = {
435
436
}
436
437
```
437
438
439
+
### Convert Time
440
+
441
+
```css
442
+
INPUT_TIME = "2025-10-30T06:33:10.815000+00:00"
443
+
INPUT_TIMEZONE = "Asia/Singapore"
444
+
```
445
+
```css
446
+
OUTPUT = {
447
+
"input_time": "2025-10-30T06:33:10.815000+00:00",
448
+
"target_timezone": "Asia/Singapore",
449
+
"converted_time": "30/10/2025 02:33:10 PM",
450
+
"converted_time_iso": "2025-10-30T14:33:10+0800"
451
+
}
452
+
```
438
453
439
454
## Configure Sumo Logic Automation Tools in Automation Service and Cloud SOAR
440
455
@@ -461,4 +476,5 @@ No authentication configuration is needed. Sumo Logic Automation Tools executes
461
476
462
477
* Nov 11, 2024 - Beta version released.
463
478
* May 23, 2025 - Introduced the new "Scaled Decimal to Percentage" action, which converts a scaled decimal value into a percentage.
464
-
* June 20, 2025 - Removed `%` sign from the output.
479
+
* June 20, 2025 - Removed `%` sign from the output.
480
+
* Nov 14, 2025 (v1.3) - Added "Convert Time" action to convert timestamps to the selected timezone.
0 commit comments