fleet/it-and-security/lib/collect-vs-code-extensions.queries.yml
Victor Lyuboslavsky f36b7d4d6d
Use gitops with dogfood. (#17098)
#17043

Set up dogfood to use gitops. I copied the current dogfood
configs/policies/queries into the gitops flow.

Successful workflow run:
https://github.com/fleetdm/fleet/actions/runs/8023101797/job/21918883543?pr=17098

---------

Co-authored-by: Noah Talerman <noahtal@umich.edu>
2024-02-28 10:50:10 -06:00

12 lines
444 B
YAML

- name: Collect Visual Studio (VS) Code extensions
automations_enabled: false
description: Collects the name, publisher, and version of the VS Code extensions
installed on hosts.
discard_data: false
interval: 3600
logging: snapshot
min_osquery_version: ""
observer_can_run: false
platform: ""
query: SELECT extension.name, extension.publisher, extension.version FROM users
JOIN vscode_extensions extension USING (uid);