mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* grafana_traces_service_graph_size * grafana_traces_trace_view_find_next_prev_clicked * grafana_traces_trace_view_scroll_to_top_clicked * grafana_traces_cheatsheet_clicked
27 lines
842 B
TypeScript
27 lines
842 B
TypeScript
import React from 'react';
|
|
|
|
import { reportInteraction } from '@grafana/runtime';
|
|
|
|
export default function CheatSheet() {
|
|
reportInteraction('grafana_traces_cheatsheet_clicked', {
|
|
datasourceType: 'tempo',
|
|
});
|
|
|
|
return (
|
|
<div>
|
|
<h2 id="tempo-cheat-sheet">Tempo Cheat Sheet</h2>
|
|
<p>
|
|
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.
|
|
</p>
|
|
<p>
|
|
Here are some{' '}
|
|
<a href="https://grafana.com/docs/tempo/latest/guides/instrumentation/" target="blank">
|
|
instrumentation examples
|
|
</a>{' '}
|
|
to get you started with trace discovery through logs and metrics (exemplars).
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|