-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addressing #13: LoudML datasource missed config options and list of M…
…L models/jobs
- Loading branch information
Volodymyr Sergeyev
committed
Sep 10, 2020
1 parent
f5a8f5d
commit 845347f
Showing
14 changed files
with
60,939 additions
and
1,594 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// This file is needed because it is used by vscode and other tools that | ||
// call `jest` directly. However, unless you are doing anything special | ||
// do not edit this file | ||
|
||
const standard = require('@grafana/toolkit/src/config/jest.plugin.config'); | ||
|
||
// This process will use the same config that `yarn test` is using | ||
module.exports = standard.jestConfig(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
import { DataSourcePlugin } from '@grafana/data'; | ||
|
||
import { LoudMLDatasource } from './datasource'; | ||
import { LoudMLQueryCtrl as QueryCtrl } from './query_ctrl'; | ||
import { LoudMLConfigCtrl as ConfigCtrl } from './config_ctrl'; | ||
// import { LoudMLQueryCtrl as QueryCtrl } from './query_ctrl'; | ||
// import { LoudMLConfigCtrl as ConfigCtrl } from './config_ctrl'; | ||
import { LoudMLQueryCtrl } from './query_ctrl'; | ||
import { LoudMLConfigCtrl } from './config_ctrl'; | ||
import { LoudMLQuery, LoudMLOptions } from './types'; | ||
|
||
export { LoudMLDatasource as Datasource, ConfigCtrl, QueryCtrl }; | ||
// export { LoudMLDatasource as Datasource, ConfigCtrl, QueryCtrl }; | ||
|
||
export { LoudMLDatasource, LoudMLDatasource as Datasource, LoudMLQueryCtrl as QueryCtrl, LoudMLConfigCtrl as ConfigCtrl }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.