---
title: "Explorers"
---

When viewing deployed Explorers, you can use the keywords in this section to ((search|search explorers)) and filter.

## Name {#explorers-name}

The Name field can be searched using the syntax `name:<text>`.
```plaintext
name:"main"
```

## Site {#explorers-site}

The site can be searched using the syntax `site:<text>`.
```plaintext
site:Primary
```

## Up {#explorers-up}

Whether the Explorer is up can be searched using the syntax `up:<boolean>`.
```plaintext
up:true
```

## Address {#explorers-address}

The IP address(es) the Explorer is deployed on can be searched using the syntax `address:<IP address>`.
```plaintext
address:10.0.1.200
```

## Version {#explorers-version}

The software version of Explorers can be searched using `version:<text>`.
```plaintext
version:2.9.7
```

## Npcap version {#explorers-npcap}

The version of the npcap library for Windows Explorers can be searched using `npcap_version:<text>`.
```plaintext
npcap_version:1.60
```

## Architecture {#explorers-architecture}

The machine architecture Explorers are deployed on can be searched using `architecture:<text>`.
```plaintext
architecture:amd64
```

## OS {#explorers-OS}

The operating system Explorers are deployed on can be searched using `os:<text>`. Note that macOS is recorded as `darwin`, the underlying Unix core of macOS.
```plaintext
os:windows
```
```plaintext
os:darwin
```

## Capability {#explorers-capability}

The capabilities of the Explorers can be searched using the syntax `capability:<keyword>`. Two keywords are supported:

 - `screenshot` for Explorers which can screenshot web pages
 - `ec2` for Explorers which can describe AWS EC2 instances

Example:
```plaintext
capability:screenshot
```

## Tags {#explorers-tags}

Use the syntax `tag:<term>` to search tags added to an Explorer. The term can be the tag name, or the tag name followed by an equal sign and the tag value. Tag value matches must be exact.

```plaintext
tag:"admin"
```
```plaintext
tag:"group=cloud"
```
