×
×
×
×

Sensor Stage

The Sensor stage collects specific information from the device — such as free disk space, battery health, or when a user last signed in. It only reads; it never changes anything on the device. The values it collects become available to the stages that follow it.

Workflow canvas highlighting the Sensor stage.

What This Stage Solves

You can't act on what you can't see. Most endpoint problems stay hidden until a user raises a ticket — a device that hasn't restarted in weeks, a disk quietly filling up, an account nobody has used in months. The Sensor reads the real state of each device at the moment the workflow runs, so every decision that follows is based on actual data rather than assumptions.

The problemWhat Sensor does about it
Devices go weeks without a restart — performance drops and patches stay uninstalledReads the last restart time from each device
Disks fill with temporary files, logs, and cache until users hit errorsReads current free disk space as a percentage
Old local accounts stay enabled long after anyone stops using themReads each account's last logon date
Laptop batteries degrade silently until users complainReads battery health, backup time, and cycle count

Example

Inactive Local Users Management

Before the workflow can decide anything, it needs to know who has been signing in. The Sensor collects local user account details and the last logon date from each device, then passes that to the Switch, which checks whether any account has been idle for more than 90 days.

Inactive local users workflow showing the Sensor stage.

Accounts you never want touched — such as Administrator or Sysadmin — can be excluded by editing the sensor's script arguments in the Sensors tab, outside the workflow.

How to Configure

  1. Drag the Sensor stage onto the canvas and connect it to the preceding stage.
  2. Enter a Name for the stage (required).
  3. Enter a Description (optional).
  4. Under Available Sensor, select the sensor you want to run from the dropdown.
    • If the sensor you need does not exist, click + to create one without leaving the workflow.
  5. Connect the Sensor stage to the next stage — usually a Switch, so the collected value can be evaluated.
Note
  • Only sensors that are already created appear in the dropdown.
  • Sensor scripts must be written as PowerShell (.ps1) for Windows or Shell (.sh) for Mac. These are the only script types supported. If you have any requirements,let us know.
Sensor stage configuration showing the available sensor selection.

Where the Collected Value Can Be Used

StageWhere the value is usedHow to insert it
SwitchIn the case condition — to evaluate the value and branch the workflowPick it from the field dropdown
EngageIn the question text and the message after submissionType $ in the field
Send MailIn the subject and the message bodyType $ in the field
FunctionIn the function parameters, for Zoho Deluge functionsPick it from the parameter dropdown

Things to Know

  • Sensor only reads — it never changes anything on the device
  • A workflow can include multiple Sensor stages — each runs independently and produces its own values.
  • The value reflects the device state at the moment the sensor runs.