Skip to content

Commit e89e275

Browse files
CSOAR-4247: Added "Convert Time" action to convert timestamps (#6031)
* CSOAR-4247: Added "Convert Time" action to convert timestamps * Updates from review --------- Co-authored-by: John Pipkin <jpipkin@sumologic.com>
1 parent 0709663 commit e89e275

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

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

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
77

88
<img src={useBaseUrl('/img/platform-services/automation-service/app-central/logos/sumo-logic-notifications.png')} alt="sumo-logic-notifications" width="100"/>
99

10-
***Version: 1.2
11-
Updated: June 20, 2025***
10+
***Version: 1.3
11+
Updated: Nov 14, 2025***
1212

1313
Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing and automation.
1414

@@ -19,6 +19,7 @@ Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing
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).
2121
* **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.
2223

2324
## Actions usage
2425

@@ -435,6 +436,20 @@ OUTPUT = {
435436
}
436437
```
437438

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+
```
438453

439454
## Configure Sumo Logic Automation Tools in Automation Service and Cloud SOAR
440455

@@ -461,4 +476,5 @@ No authentication configuration is needed. Sumo Logic Automation Tools executes
461476

462477
* Nov 11, 2024 - Beta version released.
463478
* 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

Comments
 (0)