forked from grafana/grafana-polystat-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 1.0.15, includes fix for issue 38 (grafana#44)
* move unit tests, and process template vars in clickthroughurl * move test helper * clickthrough transformer class and unit tests * integrate clickthrough transformations * move default clickthrough processing after sorting is applied * move sorting ahead of overides * cleanup * set version to 1.0.15 and update dist
- Loading branch information
Showing
55 changed files
with
1,465 additions
and
235 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
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
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,14 @@ | ||
import { PolystatModel } from "./polystatmodel"; | ||
declare class ClickThroughTransformer { | ||
static cellName: RegExp; | ||
static cellValue: RegExp; | ||
static cellRawValue: RegExp; | ||
static nthCellName: RegExp; | ||
static nthCellValue: RegExp; | ||
static nthCellRawValue: RegExp; | ||
static compositeName: RegExp; | ||
static tranformSingleMetric(index: number, url: string, data: Array<PolystatModel>): string; | ||
static tranformNthMetric(url: string, data: Array<PolystatModel>): string; | ||
static tranformComposite(name: string, url: string): string; | ||
} | ||
export { ClickThroughTransformer }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
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.