This function is used in Python Scripting.

Description

Forces execution of a scan class. On a leased scan class, if both the fast and slow rate are set to 0, this will not execute

Client Permission Restrictions

This scripting function has no Client Permission restrictions.

Syntax

system.tag.scan(provider, scname)

  • Parameters

String provider The name of the scan class provider. If blank, it will use the default. Required if used in the gateway scope.

String scname The name of the scan class to execute.

  • Returns

nothing

  • Scope

All

Code Examples
Code Snippet
# This code would immediately execute a scan on the scan class named My Slow Scan Class, even though it is only supposed to execute every minute.
 
system.tag.scan("MyProvider", "My Slow Scan Class")
  • No labels