mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Influx: Adds start page for logs in Explore Closes #17499 * Influx: Rebased with master and removed conditional display of cheat sheet in explore Cheat sheet now displays during both Metrics and Logs mode, though this is only temporary.
22 lines
591 B
TypeScript
22 lines
591 B
TypeScript
import React from 'react';
|
|
|
|
const CHEAT_SHEET_ITEMS = [
|
|
{
|
|
title: 'Getting started',
|
|
label:
|
|
'Start by selecting a measurement and field from the dropdown above. You can then use the tag selector to further narrow your search.',
|
|
},
|
|
];
|
|
|
|
export default (props: any) => (
|
|
<div>
|
|
<h2>InfluxDB Cheat Sheet</h2>
|
|
{CHEAT_SHEET_ITEMS.map(item => (
|
|
<div className="cheat-sheet-item" key={item.title}>
|
|
<div className="cheat-sheet-item__title">{item.title}</div>
|
|
<div className="cheat-sheet-item__label">{item.label}</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|