mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
this is a fix-up PR that cleans up Explore Logging after the recent restructuring. - log results need to be merged since query transactions have been introduced - logging DS has its own language provider, query field, and start page (some of them based on prometheus components) - added loader animation to log viewer - removed logging logic from prometheus components
16 lines
393 B
TypeScript
16 lines
393 B
TypeScript
import Datasource from './datasource';
|
|
|
|
import LoggingStartPage from './components/LoggingStartPage';
|
|
import LoggingQueryField from './components/LoggingQueryField';
|
|
|
|
export class LoggingConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
}
|
|
|
|
export {
|
|
Datasource,
|
|
LoggingConfigCtrl as ConfigCtrl,
|
|
LoggingQueryField as ExploreQueryField,
|
|
LoggingStartPage as ExploreStartPage,
|
|
};
|