Discovery - How conditional script field works in the Classification?

Paul125
Kilo Guru

Hello,

I am trying to understand the conditional script field in the classification stage. Below is an example of windows classification. I just wanted to know how/where discovery check for these conditions like values.get('isHyperV')=='true', gs.getProperty('glide.discovery.discover_azure_host_metadata') == 'true', DiscoveryADMEConditions.shouldTriggerADME(discovery_source). Thanks for your help!

find_real_file.png

1 ACCEPTED SOLUTION

doug_schulze
ServiceNow Employee
ServiceNow Employee

Paul,

Values are derived from parameters set from the previous classification step and properties are obviously just that, system properties that the machine checks to determine if that probe should run.

I did a whole customization on this very subject, please take a look at Customizing a Classifier to determine which probe gets triggered in exploration 

View solution in original post

2 REPLIES 2

doug_schulze
ServiceNow Employee
ServiceNow Employee

Paul,

Values are derived from parameters set from the previous classification step and properties are obviously just that, system properties that the machine checks to determine if that probe should run.

I did a whole customization on this very subject, please take a look at Customizing a Classifier to determine which probe gets triggered in exploration 

Paul125
Kilo Guru

Thanks for the reply Doug.