---
sourceDocument: Australia IT Operations Management
sourceDocumentLink: https://www.servicenow.com/docs/r/it-operations-management

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia IT Operations Management

ft:clusterId :

    - itom

bundleId :

    - itom

workflow :

    - Technology


---

# Discovery probes and sensors

# Discovery probes and sensors {#ariaid-title1}

Release version: Australia  
Updated March 12, 2026  
![](https://www.servicenow.com/docs/portal-asset/ico-clock) 2 minutes to read
Summarize  
![AI sparkle icon](https://servicenow.com/docs/portal-asset/ai-sparkle-icon) Summarized using AI  
This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.  

## Summary of Discovery probes and sensors

Discovery probes and sensors are essential components in ServiceNow Discovery that collect data and update the Configuration Management Database (CMDB).
While patterns are increasingly replacing probes and sensors, probes and sensors remain relevant for customers who have not yet migrated to patterns or have customized probes.
Discovery uses probes and sensors primarily during the scanning and classification phases of discovery, and optionally during identification and exploration phases.
Show full answer Show less  

## How Probes and Sensors Work

The MID Server runs probes that gather information from devices and sends results to sensors for processing. Probes may include post-processing scripts that run on the MID Server before data is sent to the sensor. Sensors then process this data and update the CMDB accordingly. Multi-probes are collections of probes whose data is processed by multi-sensors with individual and main scripts managing returned data.

## Discovery Phases and ECC Queue

Probes and sensors operate during the first two discovery phases: scanning and classification. For identification and exploration, both probes/sensors and patterns can be used. The MID Server monitors the ECC queue for work instructions, executes probes, and returns results to the queue. Business rules trigger sensor processing of returned data to update the CMDB.

## Security and Code Signing

When code signing is enabled, Discovery enforces signature validation on probes, probe parameters, and sensors. Unsigned or tampered payloads are blocked, ensuring integrity and security of discovery operations.

## Probe Types and Use Cases

* **Windows computers and servers:** Remote WMI queries, shell commands
* **UNIX/Linux servers:** Shell commands via SSH (Bourne-compatible shells)
* **Storage devices:** CIM/WBEM queries
* **Printers, network gear, UPS:** SNMP queries
* **Web servers:** HTTP header examination

## Managing Probes and Sensors

Most probes and sensors come prepackaged with Discovery and rarely require modification. However, customers who customize probes or sensors should realign their custom versions after upgrades to maintain compatibility. Discovery multiprobes and multisensors enable efficient data collection by executing multiple queries under a single authentication.

## Custom Probes

Customers can create custom probes, such as one that reads a text file from a Windows machine to populate a configuration item (CI) in the CMDB, allowing tailored data collection to meet specific organizational needs.  
Discovery probes and sensors perform data collection and update the Configuration Management Database (CMDB).
With each release, patterns are replacing many probes and sensors for Discovery. Consider creating new patterns or editing existing ones if you want to customize what Discovery can find. The information on probes and sensors is intended for customers who are not yet using patterns or who have customized probes retained upon upgrade. See [Patterns and horizontal discovery](https://www.servicenow.com/docs/WtfJx~H7mHHJKPMU3hBM9w#c-UsingPatternsForHorizontalDiscovery "A pattern is a series of operations that tell Discovery which CIs to find on your network and what credentials to use. Patterns also define what tables to populate in the CMDB.") for more information on patterns.  
Note:  
For information on Probe to Pattern migration see the knowledge article [KB0694477](https://support.servicenow.com/kb_view.do?sysparm_article=KB0694477).

## Discovery phases {#c_DiscoveryProbesAndSensors__section_ug3_fv2_dcb}

Discovery always uses probes and sensors during the first two phases of discovery: scanning and classification. For the last two phases, identification and
exploration, Discovery can use probes and sensors or patterns. This topic refers to probes and sensors only. See [Exploring Discovery](https://www.servicenow.com/docs/TkFiXYVAhlsNUm7PyZAjFw "Discovery finds computers, servers, printers, a variety of IP-enabled devices, and the applications that run on them. It can then update the configuration items (CIs) in your Configuration Management Database (CMDB) with the data it collects.") for an explanation of these phases. See [Patterns and horizontal discovery](https://www.servicenow.com/docs/WtfJx~H7mHHJKPMU3hBM9w#c-UsingPatternsForHorizontalDiscovery "A pattern is a series of operations that tell Discovery which CIs to find on your network and what credentials to use. Patterns also define what tables to populate in the CMDB.") for more information on patterns.

## Probes, sensors, and the ECC queue {#c_DiscoveryProbesAndSensors__section_zh4_dv2_dcb}

The probe collects the information and the sensor processes it. Both get their instructions from the ECC queue. There is a worker job on the MID Server that monitors the queue for work. The monitor checks for any entries where the Queue is output and the State is ready.  
The MID Server then processes all the output ECC messages, runs the necessary probes, and returns the probes results to the ECC queue. These results are put in the ECC queue as input entries.Figure 1. ECC queue input

After an entry is inserted in the ECC Queue table, a business rule fires (on insert) that takes that information and runs it through a sensor processor. The sensor processor's job is to take the input data, find
any sensors interested in that data, and pass it along to be processed. Those sensors ultimately update the CMDB.  
Important:  
Discovery now enforces code signing for probes, probe parameters, and sensors when code signing is enabled on the instance. Unsigned or tampered payloads are blocked, and signatures are validated before execution. For more information about code signing, see [Discovery on Code Signing instances](https://www.servicenow.com/docs/FDJsqPsdC7pQoBAFnAHTaQ "Discovery is supported on instances with Code Signing enabled. Code signing validates the integrity of Discovery components before execution to help prevent unauthorized scripts from running on MID Servers and target machines.").

## How probes and sensors work together

The MID Server launches probes to collect information about a device. The probe sends back information to the sensor to be processed. If the probe has a post-processing script defined, the post-processing script
does some data processing on the MID Server before data is sent back to the sensor on the ServiceNow instance. Otherwise the probes sends back all the data collected and the sensor performs this data processing. In both cases, the sensor updates the CMDB.

A multi-probe is a probe that contains probes. A multi-sensor
processes the data from a multi-probe. To process the data from the multi-probe, the
multi-sensor contains individual scripts to process the data returned by each probe contained in
the Multiprobe, as well as a main multi-sensor script. The individual scripts pass their
processed data to the main multi-sensor script.

## Probe types

{#c_DiscoveryProbesAndSensors__table_ixz_r1l_z4__entry__2}

| Device | Probe Type |
|-|-|
| Windows computers and servers | Remote WMI queries, shell commands |
| UNIX and Linux servers | Shell command (via SSH protocol, version 2). Discovery supports any Bourne-compatible shell. |
| Storage | CIM/WBEM queries |
| Printers | SNMP queries |
| Network gear (switches, routers, etc.) | SNMP queries |
| Web servers | HTTP header examination |
| Uninterruptible Power Supplies (UPS) | SNMP queries |
[ ]

{#c_DiscoveryProbesAndSensors__table_ixz_r1l_z4}
* **[List of Discovery probes](https://www.servicenow.com/docs/l72Wjh6Vy87mC18O8b2RFw)**   
  A wide variety of probes exist for the Discovery application to detect elements on your network.
* **[Discovery sensors](https://www.servicenow.com/docs/uac7PlcmFAhoaR6hqbgNjg#r_Sensors)**   
  Every probe in Discovery must have a corresponding sensor to process the data returned.
* **[Discovery probe management](https://www.servicenow.com/docs/eCEwn54RLzniUvCmq0H8wA)**   
  Several discovery probes and their associated sensors are included with Discovery. You rarely need to modify probes or sensors. But you might need to set parameters to control the behavior of a particular probe or align versions of customized probes.
* **[Align versions of customized probes and sensors](https://www.servicenow.com/docs/Zdgdw4DIC4~ibGUQeljyZg)**   
  If you customized a probe or sensor and upgraded to a new instance version, realign the customized probe and sensor to the most current version.
* **[Discovery multiprobes and multisensors](https://www.servicenow.com/docs/2HNhuVKbcjN_FJXNLzNfhg#r_MultiprobesIncludedWithDiscovery)**   
  Multiprobes contain one or more simple probes configured to extract specific information from manageable devices by executing multiple queries with a single authentication.
* **[Custom Discovery probe to populate a CI from a text file](https://www.servicenow.com/docs/S_zydTmUjY4OJX04_pnCSw)**   
  This custom Discovery probe reads a text file from a Windows computer and populates a configuration item (CI) in the CMDB with the values from the file.

