Skip to content

Commit

Permalink
Merge branch 'master' into kafka-repeat-rows
Browse files Browse the repository at this point in the history
  • Loading branch information
v-zhuravlev authored Dec 10, 2024
2 parents aa804f1 + 560e361 commit 4cfba0f
Show file tree
Hide file tree
Showing 29 changed files with 1,306 additions and 447 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.18
go-version: 1.23
- name: Install CI dependencies
run: make install-ci-deps
- name: Lint and Format
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.18
go-version: 1.23
- name: Install CI dependencies
run: make install-ci-deps
- name: Run Tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-mixins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: 1.23

- name: Install CI dependencies
run: make install-ci-deps
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: 1.23

- name: Install CI dependencies
run: make install-ci-deps
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ install-ci-deps:
go install github.com/google/go-jsonnet/cmd/jsonnet@v0.20.0
go install github.com/google/go-jsonnet/cmd/jsonnetfmt@v0.20.0
go install github.com/google/go-jsonnet/cmd/jsonnet-lint@v0.20.0
go install github.com/monitoring-mixins/mixtool/cmd/mixtool@a9e78b0942a4186162bf170efde7b4b3167d31a4
go install github.com/monitoring-mixins/mixtool/cmd/mixtool@a8984473edc33da685bd5f2138eab9cf6a0ff2b7
go install github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@v0.5.1

fmt:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1653,7 +1653,7 @@ local getMatcher(cfg) = '%(solrSelector)s, solr_cluster=~"$solr_cluster"' % cfg;
refresh=2,
includeAll=true,
multi=true,
allValues='.+',
allValues='.*',
sort=1
),
template.new(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1578,7 +1578,7 @@ local getMatcher(cfg) = '%(solrSelector)s, solr_cluster=~"$solr_cluster", base_u
refresh=2,
includeAll=true,
multi=true,
allValues='.+',
allValues='.*',
sort=1
),
template.new(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ local dispatchesPanel(matcher) = {
},
};

local getMatcher(cfg) = '%(solrSelector)s, solr_cluster="$solr_cluster", base_url=~"$base_url"' % cfg;
local getMatcher(cfg) = '%(solrSelector)s, solr_cluster=~"$solr_cluster", base_url=~"$base_url"' % cfg;

{
grafanaDashboards+:: {
Expand Down
Loading

0 comments on commit 4cfba0f

Please sign in to comment.