Revision d5844c35f8bbc2b3b6d7c1e0449a94465a841a82 authored by Grot (@grafanabot) on 10 May 2023, 10:39:04 UTC, committed by GitHub on 10 May 2023, 10:39:04 UTC
AzureMonitor: Correctly set resource parameter for Logs queries (#68133)

* Update to ensure the resources parameter is passed through for logs queries only

* Use string slices for resources to ensure order remains the same

* Fix lint

* clarify test

(cherry picked from commit e059ce9c8aae3f24fef4721de9ba524d4ae20df4)

Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
1 parent 758dfbd
Raw File
.bra.toml
[run]
init_cmds = [
  ["GO_BUILD_DEV=1", "make", "build-go"],
  ["make", "gen-jsonnet"],
  ["./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/devenv/dev-dashboards",
]
watch_exts = [".go", ".ini", ".toml", ".template.html"]
ignore_files = [".*_gen.go"]
build_delay = 1500
cmds = [
  ["GO_BUILD_DEV=1", "make", "build-go"],
  ["make", "gen-jsonnet"],
  ["./bin/grafana", "server", "-packaging=dev", "cfg:app_mode=development"]
]
back to top