From 1a6b1038dd815673284f7796483e920656e8bb59 Mon Sep 17 00:00:00 2001 From: Roberto Dip Date: Thu, 5 Oct 2023 14:23:13 -0300 Subject: [PATCH] add docs for detail query overrides (#14299) docs for https://github.com/fleetdm/fleet/pull/14296 --------- Co-authored-by: Rachael Shaw --- docs/Configuration/configuration-files/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Configuration/configuration-files/README.md b/docs/Configuration/configuration-files/README.md index 9cc12b3321..8b8f34b8cf 100644 --- a/docs/Configuration/configuration-files/README.md +++ b/docs/Configuration/configuration-files/README.md @@ -529,8 +529,10 @@ Use with caution as this may break Fleet ingestion of hosts data. ```yaml features: detail_query_overrides: - # null allows to disable the "users" query from running on hosts. + # null disables the "users" query from running on hosts. users: null + # "" disables the "disk_encryption_linux" query from running on hosts. + disk_encryption_linux: "" # this replaces the hardcoded "mdm" detail query. mdm: "SELECT enrolled, server_url, installed_from_dep, payload_identifier FROM mdm;" ```