mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Closes: #19271 Closes: #19286 Changes: - Updated the example in the schema folder readme - Updated the block scalar used in Fleet's osquery override documentation (`>-` » `|-`) and removed extra newlines - Updated the block scalar used in URLs used to create new yaml override files - Regenerated osqeury_fleet_schema.json
11 lines
524 B
YAML
11 lines
524 B
YAML
name: ntdomains
|
|
examples: |-
|
|
If the system is joined to a domain, this query will return the domain name as well as all known domain controllers and their IP addresses.
|
|
|
|
```
|
|
SELECT domain_name, domain_controller_name, domain_controller_address, status FROM ntdomains WHERE domain_name != "";
|
|
```
|
|
|
|
notes: |-
|
|
|
|
This table returns a row even if the local system is not joined to a domain - in this case, the `status` column will be `Unknown` and the `name` column will contain `Domain: $Hostname of local system`.
|