Skip to main content

VerifyIntegrationHealth

This Script is part of the Developer Tools Pack.#

Supported versions

Supported Cortex XSOAR versions: 6.0.0 and later.

Checks for existing errors in a given integration.

Script Data#


NameDescription
Script Typepython3
Tagsbasescript
Cortex XSOAR Version6.0.0

Inputs#


Argument NameDescription
integration_nameIntegration name to check its health status.

Outputs#


PathDescriptionType
IntegrationHealth.isHealthyDetermines the health status of the integration.Boolean
IntegrationHealth.fetchDoneDetermines whether the fetch-indicators command completed.Boolean
IntegrationHealth.integrationNameRequested integration name.String

Script Example#

!VerifyIntegrationHealth integration_name="AutoFocus Daily Feed"

Context Example#

{
"IntegrationHealth": {
"fetchDone": true,
"integrationName": "AutoFocus Daily Feed",
"isHealthy": true
}
}

Human Readable Output#

Results#

fetchDoneintegrationNameisHealthy
trueAutoFocus Daily Feedtrue

Troubleshooting#

Multi-tenant environments should be configured with the Cortex Rest API instance when using this automation. Make sure the Use tenant parameter (in the Cortex Rest API integration) is checked to ensure that API calls are made to the current tenant instead of the master tenant.