mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Loki: Updated cheat sheet with new filter syntax - updated cheat sheet with new filter syntax - added user-specific examples from the user's label set - added link to LogQL docs - separated styles for examples (clickable) and expressions * Review feedback
20 lines
647 B
TypeScript
20 lines
647 B
TypeScript
import { PrometheusDatasource } from './datasource';
|
|
import { PromQueryEditor } from './components/PromQueryEditor';
|
|
import { PrometheusConfigCtrl } from './config_ctrl';
|
|
|
|
import PromCheatSheet from './components/PromCheatSheet';
|
|
import PromQueryField from './components/PromQueryField';
|
|
|
|
class PrometheusAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
PrometheusDatasource as Datasource,
|
|
PromQueryEditor as QueryEditor,
|
|
PrometheusConfigCtrl as ConfigCtrl,
|
|
PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
PromQueryField as ExploreQueryField,
|
|
PromCheatSheet as ExploreStartPage,
|
|
};
|