From eff9374a636fee59287b94ca04686abda9f09ac4 Mon Sep 17 00:00:00 2001 From: Joey <90795735+joey-grafana@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:46:43 +0000 Subject: [PATCH] Tempo: Update cheatsheet (#78797) * Tempo: Update cheatsheet * Update text --- .../plugins/datasource/tempo/CheatSheet.tsx | 32 +++++++++++++------ 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/public/app/plugins/datasource/tempo/CheatSheet.tsx b/public/app/plugins/datasource/tempo/CheatSheet.tsx index 40afaf9cfff..a8d98f51f10 100644 --- a/public/app/plugins/datasource/tempo/CheatSheet.tsx +++ b/public/app/plugins/datasource/tempo/CheatSheet.tsx @@ -1,6 +1,7 @@ import React from 'react'; import { config, reportInteraction } from '@grafana/runtime'; +import { TextLink } from '@grafana/ui'; export default function CheatSheet() { reportInteraction('grafana_traces_cheatsheet_clicked', { @@ -9,19 +10,30 @@ export default function CheatSheet() { }); return ( -
- Tempo is a trace id lookup store. Enter a trace id in the above field and hit “Run Query” to retrieve your
- trace. Tempo is generally paired with other datasources such as Loki or Prometheus to find traces.
+
- Here are some{' '}
-
- instrumentation examples
- {' '}
- to get you started with trace discovery through logs and metrics (exemplars).
+ Tempo implements{' '}
+
+ You can compose TraceQL queries using either the Search tab (the TraceQL query builder) or the TraceQL tab (the
+ TraceQL query editor). Both of these methods let you build queries and drill-down into result sets. (
+