From d69457d5e500d896fad196cf01c02b85c39bbeb0 Mon Sep 17 00:00:00 2001 From: matt abrams <37156449+zuchka@users.noreply.github.com> Date: Mon, 8 Aug 2022 12:49:54 -0400 Subject: [PATCH] revise to match docs (#53354) --- .../app/plugins/datasource/loki/components/LokiCheatSheet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx b/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx index 471b4ec5cd5..e4d966ccb70 100644 --- a/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx +++ b/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx @@ -16,7 +16,7 @@ const LOGQL_EXAMPLES = [ title: 'Log pipeline', expression: '{job="mysql"} |= "metrics" | logfmt | duration > 10s', label: - 'This query targets the MySQL job, filters out logs that don’t contain the word "metrics" and parses each log line to extract more labels and filters with them.', + 'This query targets the MySQL job, keeps logs that contain the substring "metrics", and then parses and filters the logs further.', }, { title: 'Count over time',