ConflueraProgressionsCount

Logs progressions count.

python · Confluera

Details

IDConflueraProgressionsCount
Languagepython
From Version6.0.0
Docker Imagedemisto/python3:3.12.8.3296088

README

ConflueraProgressionsCount Script

Script Data


Name Description
Script Type python3
Tags Confluera
Cortex XSOAR Version 6.0.0

Inputs


Argument Name Description
N/A N/A

Outputs


Path Description Type
N/A N/A N/A

Script Example


!ConflueraProgressionsCount

Human Readable Output


alt text

from CommonServerPython import *

from CommonServerUserPython import *

# Executes confluera-fetch-progressions command/script
progressions_data = demisto.executeCommand("confluera-fetch-progressions", {"hours": "72"})

prog_count = 0
if progressions_data[1] and progressions_data[1]["Contents"]:
    prog_count = len(progressions_data[1]["Contents"])

return_results(prog_count)