Is there an iDash CLI command that will return a list of ONLY Enabled SLAs?
search cancel

Is there an iDash CLI command that will return a list of ONLY Enabled SLAs?

book

Article ID: 108612

calendar_today

Updated On:

Products

iDash Workload Automation

Issue/Introduction



Is there an iDash CLI command that will return a list of ONLY Enabled SLAs?

Environment

Release:
Component: 7IDASH

Resolution

There is not a CLI command that will list only enabled SLAs. However, the following query can be safely run in the iDash database to generate such a list...

select id from idash_config where type='sla' and tag='idash.sla.enabled' and value='true';

If there is a need to only list disabled SLAs, change the last value to 'false'.