mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
c1aa8355cb
- Support multiple enroll secrets - Record name of enroll secret used when host enrolls - Update fleetctl and UI to support these features
229 lines
5.7 KiB
YAML
229 lines
5.7 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: options
|
|
spec:
|
|
config:
|
|
options:
|
|
distributed_interval: 3
|
|
distributed_tls_max_attempts: 3
|
|
logger_plugin: tls
|
|
logger_tls_endpoint: /api/v1/osquery/log
|
|
logger_tls_period: 10
|
|
decorators:
|
|
load:
|
|
- "SELECT version FROM osquery_info"
|
|
- "SELECT uuid AS host_uuid FROM system_info"
|
|
always:
|
|
- "SELECT user AS username FROM logged_in_users WHERE user <> '' ORDER BY time LIMIT 1"
|
|
interval:
|
|
3600: "SELECT total_seconds AS uptime FROM uptime"
|
|
overrides:
|
|
# Note configs in overrides take precedence over the default config defined
|
|
# under the config key above. Hosts receive overrides based on the platform
|
|
# returned by `SELECT platform FROM os_version`. In this example, the base
|
|
# config would be used for Windows and CentOS hosts, while Mac and Ubuntu
|
|
# hosts would receive their respective overrides.
|
|
platforms:
|
|
darwin:
|
|
options:
|
|
distributed_interval: 10
|
|
distributed_tls_max_attempts: 10
|
|
logger_plugin: tls
|
|
logger_tls_endpoint: /api/v1/osquery/log
|
|
logger_tls_period: 300
|
|
disable_tables: chrome_extensions
|
|
docker_socket: /var/run/docker.sock
|
|
file_paths:
|
|
users:
|
|
- /Users/%/Library/%%
|
|
- /Users/%/Documents/%%
|
|
etc:
|
|
- /etc/%%
|
|
ubuntu:
|
|
options:
|
|
distributed_interval: 10
|
|
distributed_tls_max_attempts: 3
|
|
logger_plugin: tls
|
|
logger_tls_endpoint: /api/v1/osquery/log
|
|
logger_tls_period: 60
|
|
schedule_timeout: 60
|
|
docker_socket: /etc/run/docker.sock
|
|
file_paths:
|
|
homes:
|
|
- /root/.ssh/%%
|
|
- /home/%/.ssh/%%
|
|
etc:
|
|
- /etc/%%
|
|
tmp:
|
|
- /tmp/%%
|
|
exclude_paths:
|
|
homes:
|
|
- /home/not_to_monitor/.ssh/%%
|
|
tmp:
|
|
- /tmp/too_many_events/
|
|
decorators:
|
|
load:
|
|
- "SELECT * FROM cpuid"
|
|
- "SELECT * FROM docker_info"
|
|
interval:
|
|
3600: "SELECT total_seconds AS uptime FROM uptime"
|
|
---
|
|
apiVersion: v1
|
|
kind: enroll_secret
|
|
spec:
|
|
secrets:
|
|
- active: true
|
|
name: default
|
|
secret: RzTlxPvugG4o4O5IKS/HqEDJUmI1hwBoffff
|
|
- active: true
|
|
name: new_one
|
|
secret: reallyworks
|
|
- active: false
|
|
name: inactive_secret
|
|
secret: thissecretwontwork!
|
|
---
|
|
apiVersion: v1
|
|
kind: label
|
|
spec:
|
|
name: pending_updates
|
|
query: pending_updates
|
|
platforms:
|
|
- darwin
|
|
---
|
|
apiVersion: v1
|
|
kind: label
|
|
spec:
|
|
name: slack_not_running
|
|
query: slack_not_running
|
|
---
|
|
apiVersion: v1
|
|
kind: pack
|
|
spec:
|
|
name: osquery_monitoring
|
|
queries:
|
|
- query: osquery_version
|
|
name: osquery_version_snapshot
|
|
interval: 7200
|
|
snapshot: true
|
|
- query: osquery_version
|
|
name: osquery_version_differential
|
|
interval: 7200
|
|
- query: osquery_schedule
|
|
interval: 7200
|
|
removed: false
|
|
- query: osquery_events
|
|
interval: 86400
|
|
removed: false
|
|
- query: osquery_info
|
|
interval: 600
|
|
removed: false
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: osquery_version
|
|
description: The version of the Launcher and Osquery process
|
|
query: select launcher.version, osquery.version from kolide_launcher_info launcher, osquery_info osquery;
|
|
support:
|
|
launcher: 0.3.0
|
|
osquery: 2.9.0
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: osquery_schedule
|
|
description: Report performance stats for each file in the query schedule.
|
|
query: select name, interval, executions, output_size, wall_time, (user_time/executions) as avg_user_time, (system_time/executions) as avg_system_time, average_memory, last_executed from osquery_schedule;
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: osquery_info
|
|
description: A heartbeat counter that reports general performance (CPU, memory) and version.
|
|
query: select i.*, p.resident_size, p.user_time, p.system_time, time.minutes as counter from osquery_info i, processes p, time where p.pid = i.pid;
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: osquery_events
|
|
description: Report event publisher health and track event counters.
|
|
query: select name, publisher, type, subscriptions, events, active from osquery_events;
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: docker_processes
|
|
descriptions: The docker containers processes that are running on a system.
|
|
query: select * from docker_container_processes;
|
|
support:
|
|
osquery: 2.9.0
|
|
platforms:
|
|
- linux
|
|
- darwin
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: hostname
|
|
query: select hostname from system_info;
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: uuid
|
|
query: select uuid from osquery_info;
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: instance_id
|
|
query: select instance_id from system_info;
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: always_true
|
|
query: select 1;
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: pending_updates
|
|
query: SELECT value from plist where path = "/Library/Preferences/ManagedInstalls.plist" and key = "PendingUpdateCount" and value > "0";
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: slack_not_running
|
|
query: >
|
|
SELECT * from system_info
|
|
WHERE NOT EXISTS (
|
|
SELECT *
|
|
FROM processes
|
|
WHERE name LIKE "%Slack%"
|
|
);
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: centos_hosts
|
|
query: select 1 from os_version where platform = "centos";
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: ubuntu_hosts
|
|
query: select 1 from os_version where platform = "ubuntu";
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: windows_hosts
|
|
query: select 1 from os_version where platform = "windows";
|
|
---
|
|
apiVersion: v1
|
|
kind: query
|
|
spec:
|
|
name: darwin_hosts
|
|
query: select 1 from os_version where platform = "darwin";
|