- 09 Sep, 2020 8 commits
-
-
Ryan McKinley committed
-
Hugo Häggmark committed
-
* added version notice to the group by documentation. * updated to new suggestion.
Marcus Andersson committed -
Torkel Ödegaard committed
-
Carl Bergquist committed
-
* DashboardSettings: Fixes auto refresh crash with space in interval * Tests: fixes typings * Refactor: validets onBlur and other PR comments * Tests: adds component tests * Refactor: changes after PR feedback
Hugo Häggmark committed -
Hugo Häggmark committed
-
Liam Stanley committed
-
- 08 Sep, 2020 25 commits
-
-
Changes the dimensionsFilters property to dimensionsFilter in the Azure Monitor Datasource's AzureMonitor service to make what is sent to match the saved model. Before this, the property that the backend was expecting was not available in the case of alerting, where the stored model is fetched. This also fixes a panic when there is a dimension alias but no dimension
Kyle Brandt committed -
## FilterableTableCell ### added - added `display: inline-flex` and `align-items: center` to `tableCellWrapper` class - added `flex: 1` to `tableCell` class ### removed - unused imports - removed ternary if since it has no use anymore - removed `tableCellWrapper` style definition from stylesFactory
Michel Engelen committed -
Alex Khomenko committed
-
Russ committed
-
* Search: refactor SearchItem.test.tsx * Search: refactor SearchResults.test.tsx * Search: mock search_srv * Search: refactor SearchResultsFilter.test.tsx * Search: remove redundant mocks * Search: fix type errors * Search: move selectors to e2e-selectors
Alex Khomenko committed -
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Arve Knudsen committed -
* add suburl if it exists * remove log * remove another log
Peter Holmberg committed -
* CircleCI: Fix OOMs during frontend tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Arve Knudsen committed -
This reverts commit 77628398.
Arve Knudsen committed -
* grafana-plugin-ci-alpine: Upgrading Go,golangci-lint, adding gcloud Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * grafana-plugin-ci: Upgrading Go,golangci-lint, adding gcloud Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * grafana-plugin-ci-alpine: Minor cleanup Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Don't specify depth when cloning Mage Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * grafana-plugin-ci-e2e: Upgrading Go, golangci-lint Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * ci-deploy: Upgrading gcloud Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Update packages/grafana-toolkit/docker/grafana-plugin-ci-alpine/README.md Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> * grafana-plugin-ci-alpine: Install Python Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> Co-authored-by: Will Browne <wbrowne@users.noreply.github.com>
Arve Knudsen committed -
* Docs: Add documentation for Explore Query Inspector
kay delaney committed -
* Make sure repeated panel has inView property set correctly * Test * Update public/app/features/dashboard/state/DashboardModel.ts Co-authored-by: Hugo Häggmark <hugo.haggmark@grafana.com> Co-authored-by: Hugo Häggmark <hugo.haggmark@grafana.com>
Dominik Prokop committed -
Transformations: make sure that we copy all the values from a field when using MutableDataFrame. (#27446)
Marcus Andersson committed -
* CloudWatch: Convert metrics queries to return data frames Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Arve Knudsen committed -
* Explore: Transform prometheus query to elasticsearch query Enable a way to transform prometheus/loki labels to elasticsearch query. This make a link between metrics to logs. Examples: A prometheus query : rate(my_metric{label1="value1",label2!="value2",label3=~"value.+",label4!~".*tothemoon"}[5m]) Will be this elasticsearch query when switching to elasticsearch datasource: __name__:"my_metric" AND label1:"value1" AND NOT label2:"value2" AND label3:/value.+/ AND NOT label4:/.*tothemoon/ * fix test * remove non needed async * Use prism token instead of regex * fix test ./scripts/ci-frontend-metrics.sh * mock timesrv and TemplateSrv in test * Remove unnecessary await/async Co-authored-by: Melchior MOULIN <m.moulin@criteo.com> Co-authored-by: Andrej Ocenas <mr.ocenas@gmail.com>
Melchior MOULIN committed -
* cloudmonitoring: fix empty title and text annotation * cloudmonitoring: use metricQuery value
Ato Araki committed -
Themes: Fix issue generating themes due to code in @grafana/data accessing window object during module load (#27441)
Torkel Ödegaard committed -
Transformations: merge will properly handle empty frames and frames with multiple rows where values are overlapping. (#27362) * wip. * Fixed issue with merge not behaving exactly as the old table panel did. * Fixed so empty data frames will be exluded prior to trying to merge the result. * Changed so if passing only empty frames first will only be returned. * de-duplication of configuration in tests.
Marcus Andersson committed -
* Settings: Remove unnecessary error handling code Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
Torkel Ödegaard committed -
Alex Khomenko committed
-
Zoltán Bedi committed
-
Emil Tullstedt committed
-
* Grafana-UI: Add docs and story for ClickOutsideWrapper * Grafana-UI: Update comments * Grafana-UI: expand usage * Grafana-UI: Tweak docs
Alex Khomenko committed -
Signed-off-by: Pratik Raj <rajpratik71@gmail.com>
Pratik Raj committed -
Enables alerts to be sent to users who do not have edit permissions. Addresses Issue: https://github.com/grafana/grafana/issues/26014
robert lestak committed
-
- 07 Sep, 2020 7 commits
-
-
* Chore: Enable gocyclo linter Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * API: Fix linting issue Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * API: Refactor to reduce complexity Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix type assertion Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Arve Knudsen committed -
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Arve Knudsen committed -
Enables creating signed URLs when uploading images to Google Cloud Storage. By using signed urls, not only is the public URL expiration configurable but the images in the bucket are not publicly accessible. Fixes #26773 Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com>
Marcos Mendez committed -
* Alerting: override PagerDuty 'dedup_key' via tags Added ability to override PagerDuty 'dedup_key' via Alert tags Updated unit tests * Updated documentation * add comma Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com> * add space Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com> Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com>
Andrei Lavrov committed -
* scripts/ci-frontend-metrics.sh: Fix execution Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Arve Knudsen committed -
Fixes #8403
Domas committed -
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Arve Knudsen committed
-