From 308a1549eb2181ac01aa020fb911ae731a39a512 Mon Sep 17 00:00:00 2001 From: Brock Walters <153771548+nonpunctual@users.noreply.github.com> Date: Fri, 23 Feb 2024 15:58:31 -0500 Subject: [PATCH] Update standard-query-library.yml (#17123) Added query for listing all table names in the schema of the currently installed Fleet version per customer request. --- .../standard-query-library/standard-query-library.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/01-Using-Fleet/standard-query-library/standard-query-library.yml b/docs/01-Using-Fleet/standard-query-library/standard-query-library.yml index 44afb8199e..8adb50f4f4 100644 --- a/docs/01-Using-Fleet/standard-query-library/standard-query-library.yml +++ b/docs/01-Using-Fleet/standard-query-library/standard-query-library.yml @@ -1067,3 +1067,13 @@ spec: purpose: Informational tags: inventory contributors: lucasmrod,sharon-fdm,zwass +--- +apiVersion: v1 +kind: query +spec: + name: List osquery table names + description: List all table names in the schema of the currently installed version of osquery + query: SELECT DISTINCT name FROM osquery_registry; + purpose: Informational + tags: fleet, osquery, table, schema + contributors: nonpunctual