Hi all,
Is there a way to do discovery rule by oracle.custom.query[]? For example, I have sql script jobs_discovery.sql (for discovery dba_jobs which will be in Discovery rule):
And I have another sql script job.sql, which will be in Item Prototypes (I will pass job number which I discovered earlier:
The main problem is how to do discovery rule?
Is there a way to do discovery rule by oracle.custom.query[]? For example, I have sql script jobs_discovery.sql (for discovery dba_jobs which will be in Discovery rule):
Code:
SELECT job FROM dba_jobs
Code:
SELECT job, broken FROM dba_jobs WHERE job = :1
Comment