Strategy

Overall strategy of probe execution

run_once

By default, the probe will be executed for each Agentic component. You might have scenarios where you want to run the probe once per Agentic Collection. (Eg you want to check if /docker-config.yml is accessible or not)

You can set this flag to true if you want to run the probe once per Agentic Collection.

execute:
  requests:
    req: 
      - modify_url: /docker-config.yml
strategy:
  run_once: /

Irrespective of number of Agentic components, this probe will run once per Agentic Collection

Last updated