Sensors
Sensors
Section titled “Sensors”The Sensors page manages your deployed sensor instances, their scanner assignments, and scan run history.

Sensor Registration
Section titled “Sensor Registration”Sensors are registered in the platform when they first push data to the API. Each sensor is identified by its API key.
To register a new sensor:
- Navigate to Sensors → Add Sensor
- Provide a name and description
- Generate an API key
- Use the API key in your sensor config file
# Use the generated API key in your sensor configapiUrl: http://your-api-host:9090apiKey: generated-api-key-hereSensor List
Section titled “Sensor List”The sensor table shows:
| Column | Description |
|---|---|
| Name | Sensor identifier |
| Status | Online/Offline (based on recent activity) |
| Scanner Type | What scanner is assigned |
| Last Scan | Timestamp of most recent scan run |
| Assets Found | Total assets discovered by this sensor |
Scanner Assignments
Section titled “Scanner Assignments”Assign scanner configurations to sensors from the UI. This defines what each sensor scans when triggered.

Available scanner types:
- HTTPS Endpoint Scanner
- File System Scanner
- SSH Key Scanner
- Windows Certificate Store Scanner
- Source Code Scanner
- Binary Scanner
- AWS Scanner
- Active Directory / LDAP Scanner
Scan Runs
Section titled “Scan Runs”View the history of all scan executions:
| Column | Description |
|---|---|
| Sensor | Which sensor ran the scan |
| Scanner Type | Type of scanner used |
| Started | Scan start timestamp |
| Duration | How long the scan took |
| Status | Success, Failed, or Running |
| Assets Found | Number of assets discovered in this run |
Click a scan run to see the detailed results — which assets were discovered, updated, or newly found.

Triggering Scans
Section titled “Triggering Scans”Scans can be triggered in multiple ways:
- Manual — Click “Run Scan” on a sensor from the UI
- CLI — Run the sensor JAR with a config file
- Scheduled — Configure scan schedules in Alerts & Schedules
- Cron — External scheduler (cron, Task Scheduler) running the sensor JAR
API Key Management
Section titled “API Key Management”Each sensor authenticates with the API using an API key sent in the request header. Keys can be:
- Generated from the Sensors page
- Rotated (generate new, update sensor config, revoke old)
- Revoked (immediately blocks the sensor from pushing data)
Related
Section titled “Related”- Sensor Deployment — How to deploy and configure sensors
- Discovery & Scanners — Scanner capabilities in detail
- Alerts & Schedules — Automated scan scheduling
- Architecture — How sensors communicate with the API