From 6fc0b64e27615849ff4cfba993bfc78a984d4ef4 Mon Sep 17 00:00:00 2001 From: Mahendra Kamble Date: Tue, 24 Feb 2026 13:09:10 +0530 Subject: [PATCH 1/2] CSOAR-4568: added new action i.e Count Occurneces Of Value --- .../sumo-logic-automation-tools.md | 34 +++++++++++++++++-- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md b/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md index c70bc6b2e5..c1597d334a 100644 --- a/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md +++ b/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md @@ -7,8 +7,8 @@ import useBaseUrl from '@docusaurus/useBaseUrl'; sumo-logic-notifications -***Version: 1.3 -Updated: Nov 14, 2025*** +***Version: 1.4 +Updated: February 25, 2026*** Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing and automation. @@ -20,6 +20,7 @@ Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing * **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). * **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). * **Convert Time** (*custom*) - Converts timestamps to the selected timezone. +* **Count Occurrence Of Value** (*Custom*) - Counts the occurrence of a specified value in texts. ## Actions usage @@ -451,6 +452,32 @@ OUTPUT = { } ``` +### Count Occurrence Of Value + +```css +INPUT_TEXT = "This is an example text. This text is for testing." +VALUE_TO_COUNT = "text" +``` +```css +OUTPUT = {"count": 2} +``` + +```css +INPUT_TEXT = "1.1.1.1, 3.3.3.3, 4.4.4.4, 1.1.1.1" +VALUE_TO_COUNT = "1.1.1.1" +``` +```css +OUTPUT = {"count": 2} +``` + +```css +INPUT_TEXT = "sample.com, sample123.com, sample1234.com, hostname.com" +VALUE_TO_COUNT = "hostname.com" +``` +```css +OUTPUT = {"count": 1} +``` + ## Configure Sumo Logic Automation Tools in Automation Service and Cloud SOAR import IntegrationsAuth from '../../../../reuse/integrations-authentication.md'; @@ -477,4 +504,5 @@ No authentication configuration is needed. Sumo Logic Automation Tools executes * Nov 11, 2024 - Beta version released. * May 23, 2025 - Introduced the new "Scaled Decimal to Percentage" action, which converts a scaled decimal value into a percentage. * June 20, 2025 - Removed `%` sign from the output. -* Nov 14, 2025 (v1.3) - Added "Convert Time" action to convert timestamps to the selected timezone. \ No newline at end of file +* Nov 14, 2025 (v1.3) - Added "Convert Time" action to convert timestamps to the selected timezone. +* Feb 25, 2026 (v1.4) - Added "Count Occurrence Of Value" action to count the occurrence of a specified value in texts. \ No newline at end of file From 090e1553f978e18ca39df4e578c7156107db3e4f Mon Sep 17 00:00:00 2001 From: Mahendra Kamble Date: Wed, 25 Feb 2026 19:57:21 +0530 Subject: [PATCH 2/2] CSOAR-4568: modified action --- .../integrations/sumo-logic-automation-tools.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md b/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md index c1597d334a..402b331963 100644 --- a/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md +++ b/docs/platform-services/automation-service/app-central/integrations/sumo-logic-automation-tools.md @@ -7,8 +7,8 @@ import useBaseUrl from '@docusaurus/useBaseUrl'; sumo-logic-notifications -***Version: 1.4 -Updated: February 25, 2026*** +***Version: 1.5 +Updated: February 26, 2026*** Sumo Logic Automation Tools simplifies Cloud SOAR playbooks with data processing and automation. @@ -505,4 +505,5 @@ No authentication configuration is needed. Sumo Logic Automation Tools executes * May 23, 2025 - Introduced the new "Scaled Decimal to Percentage" action, which converts a scaled decimal value into a percentage. * June 20, 2025 - Removed `%` sign from the output. * Nov 14, 2025 (v1.3) - Added "Convert Time" action to convert timestamps to the selected timezone. -* Feb 25, 2026 (v1.4) - Added "Count Occurrence Of Value" action to count the occurrence of a specified value in texts. \ No newline at end of file +* Feb 25, 2026 (v1.4) - Added "Count Occurrence Of Value" action to count the occurrence of a specified value in texts. +* Feb 26, 2026 (v1.5) - Added a new output path to enable easier data consumption in playbook workflows. \ No newline at end of file