mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
Explore/Loki: Update docs and cheatsheet (#28541)
* Add updated histogram docs * Add to cheatsheet * Update * Update docs/sources/explore/index.md * Update docs/sources/explore/index.md
This commit is contained in:
parent
c96ef2676e
commit
e94b37c656
@ -155,6 +155,10 @@ Along with metrics, Explore allows you to investigate your logs with the followi
|
||||
- [InfluxDB](../datasources/influxdb)
|
||||
- [Elasticsearch](../datasources/elasticsearch)
|
||||
|
||||
### Logs visualization
|
||||
|
||||
Results of log queries are shown as histograms in the graph and individual logs are displayed below. If the data source does not send histogram data for the requested time range, the logs model computes a time series based on the log row counts bucketed by an automatically calculated time interval and the start of the histogram is then anchored by the first log row's timestamp from the result. The end of the time series is anchored to the time picker's **To** range.
|
||||
|
||||
### Visualization options
|
||||
|
||||
You can customize how logs are displayed and select which columns are shown.
|
||||
|
@ -8,6 +8,12 @@ const PREFERRED_LABELS = ['job', 'app', 'k8s_app'];
|
||||
const EXAMPLES_LIMIT = 5;
|
||||
|
||||
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.',
|
||||
},
|
||||
{
|
||||
title: 'Count over time',
|
||||
expression: 'count_over_time({job="mysql"}[5m])',
|
||||
|
Loading…
Reference in New Issue
Block a user