ConflueraProgressionsCount
Logs progressions count.
- Type
- python
- Pack
- Confluera
Source
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)
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
