-
Notifications
You must be signed in to change notification settings - Fork 12.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dfp-internal-metrics
* master: (139 commits) SAML Role and Team sync (open source part) (#23391) Transformers: fixes column names generated by seriesToColumn transformer (#23642) Table: add a select option when multiple tables exist (#23545) Tabs: adds counter component (#23548) UX: Minor style tweaks and fixes (#23614) Modals: Fixed alignment in header (#23618) revent optional event arg change (#23622) Build: Stricter linting should break the build (#23606) Docs: update users API (#23570) Explore: Prevents sizing issue when split (#23596) @grafana/ui: Various smaller Icon updates (#23588) Because alpine uses musl instead of libc, the e2e/cypress was not compatible (#23602) Backend Plugins: Discard logged messages from logger named stdio (#23601) Fixed share json (#23607) Linting fixes for provisoning (#23600) Image Rendering: Remove PhantomJS support (#23460) Storybook: Organizing (#23572) @grafana/ui: Remove ColorPallete component (#23592) Docs: Change header levels of last three sections (#23587) CircleCI: Upgrade the build pipeline tool (#23595) ...
- Loading branch information
Showing
1,147 changed files
with
34,692 additions
and
15,473 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[run] | ||
init_cmds = [ | ||
["go", "run", "-mod=vendor", "build.go", "-dev", "build-cli"], | ||
["go", "run", "-mod=vendor", "build.go", "-dev", "build-server"], | ||
["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"] | ||
["go", "run", "build.go", "-dev", "build-cli"], | ||
["go", "run", "build.go", "-dev", "build-server"], | ||
["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"] | ||
] | ||
watch_all = true | ||
follow_symlinks = true | ||
watch_dirs = [ | ||
"$WORKDIR/pkg", | ||
"$WORKDIR/public/views", | ||
"$WORKDIR/conf", | ||
"$WORKDIR/pkg", | ||
"$WORKDIR/public/views", | ||
"$WORKDIR/conf", | ||
] | ||
watch_exts = [".go", ".ini", ".toml", ".template.html"] | ||
build_delay = 1500 | ||
cmds = [ | ||
["go", "run", "-mod=vendor", "build.go", "-dev", "build-server"], | ||
["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"] | ||
["go", "run", "build.go", "-dev", "build-server"], | ||
["./bin/grafana-server", "-packaging=dev", "cfg:app_mode=development"] | ||
] |
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
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,23 @@ | ||
|
||
apiVersion: 1 | ||
|
||
datasources: | ||
- name: loki-derived-test | ||
type: loki | ||
access: proxy | ||
url: http://localhost:3100 | ||
editable: false | ||
jsonData: | ||
derivedFields: | ||
- name: "traceID" | ||
matcherRegex: "trace_id=(\\w+)" | ||
url: "$${__value.raw}" | ||
datasourceUid: jaeger1234 | ||
|
||
- name: jaeger-derived-test | ||
type: jaeger | ||
uid: jaeger1234 | ||
access: proxy | ||
url: http://localhost:16686 | ||
editable: false | ||
|
Oops, something went wrong.