Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Probe activity pack

Orchestration provides an activity pack customized using the ServiceNow activity designer that runs probes on target hosts to return specific information.

These custom activities were built with the Create a probe activity, which gives workflow administrators the ability to store input and output variables in the databus.

To use the custom probe activities, you must request activation of the Orchestration - Probe plugin.

Parent Topic:Orchestration activity packs

Resolve DNS Name activity

The Resolve DNS Name activity takes an IP address or a fully qualified domain name (FQDN), which it resolves into one or more IP addresses.

The domain name is sent through the MID Server to the domain name system (DNS) to resolve the name. If a single IP address is returned, it is stored in two variables:resolved_ip and resolved_ips. If multiple IP addresses are returned, the first IP address is stored in the resolved_ip variable, and all the addresses are stored in the resolved_ips variable. If an IP address is provided instead of an FQDN, this address is output directly to both variables. Your ServiceNow instance must have access to a MID Server configured to use Resolve DNS to run this activity.

This activity replaces an activity by the same name available in releases prior to Istanbul. If you have a workflow created in a previous version that uses the deprecated activity, your workflow will continue to work normally after upgrading to Istanbul. However, all new workflows must use the custom version of this activity. This activity was built with the Probe activity template, which gives workflow administrators the ability to store input and output variables in the databus.

Input variables

VariableDescription
FQDNThe fully qualified domain name to resolve or an IP address.

Output variables

VariableDesctiption
ipThe first IP address of the resolved DNS name.
ipsComma separated list of resolved IP addresses.
resultOne of the following:- resolved: Able to resolve the sprcified DNS name. - unresolved: Unable to resolve the specified DNS name.

Conditions

ConditionDescription
SuccessActivity successfully resolved the DNS name.
FailureActivity failed to resolve the DNS name.

SNMP Query activity

The SNMP Query activity queries an SNMP device.

Your ServiceNow instance must have access to a MID Server configured to use SNMP to run this activity.

This activity replaces an activity by the same name available in releases prior to Istanbul. If you have a workflow created in a previous version that uses the deprecated activity, your workflow will continue to work normally after upgrading to Istanbul. However, all new workflows must use the custom version of this activity. This activity was built with the Probe activity template, which gives workflow administrators the ability to store input and output variables in the databus.

Input variables

VariableDescription
hostnameHostname or IP address of the SNMP device being queried.
oidsA list of unique object identifiers used to identify SNMP devices.

Output variables

VariableDescription
descriptionDescription of the SNMP object.
timeoutBoolean value indicating whether or not the query timed out.
errorIndicates any error that occurred. If no error occurred, this value is null.
oid_dataAn array of data objects for all unique object identifiers.

Conditions

ConditionDescription
SuccessActivity successfully ran the query on the target device.
FailureActivity failed to run the query on the target device. Failure could be caused by invalid credentials or a device that is not accessible.