Skip to content

Commit

Permalink
update windows exporter to 0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Jul 29, 2024
1 parent 223239f commit 6b23c20
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ next:
- do not use empty-state if warn/crit conditions contain check on 'count'
- fix evaluating nested filter conditions
- fix check_http/check_tcp/check_dns help (#135)
- update windows exporter to 0.26.0

0.26 Wed Jul 17 15:23:37 CEST 2024
- fix check_os_version windows build version (#134)
Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ WINDOWS_EXPORTER_VERSION_I386=0.24.0
WINDOWS_EXPORTER_FILE_I386=windows_exporter-$(WINDOWS_EXPORTER_VERSION_I386)
WINDOWS_EXPORTER_URL_I386=https://github.com/prometheus-community/windows_exporter/releases/download/v$(WINDOWS_EXPORTER_VERSION_I386)/

WINDOWS_EXPORTER_VERSION=0.25.1
WINDOWS_EXPORTER_VERSION=0.26.0
WINDOWS_EXPORTER_FILE=windows_exporter-$(WINDOWS_EXPORTER_VERSION)
WINDOWS_EXPORTER_URL=https://github.com/prometheus-community/windows_exporter/releases/download/v$(WINDOWS_EXPORTER_VERSION)/

Expand Down Expand Up @@ -399,7 +399,9 @@ windist: | dist
test -f windist/windows_exporter-386.exe || curl -s -L -o windist/windows_exporter-386.exe $(WINDOWS_EXPORTER_URL_I386)/$(WINDOWS_EXPORTER_FILE_I386)-386.exe
test -f windist/windows_exporter-amd64.exe || curl -s -L -o windist/windows_exporter-amd64.exe $(WINDOWS_EXPORTER_URL)/$(WINDOWS_EXPORTER_FILE)-amd64.exe
test -f windist/windows_exporter-arm64.exe || curl -s -L -o windist/windows_exporter-arm64.exe $(WINDOWS_EXPORTER_URL)/$(WINDOWS_EXPORTER_FILE)-arm64.exe
cd windist && shasum --ignore-missing -c ../packaging/sha256sums.txt
grep windows_exporter packaging/sha256sums.txt > windist/sha256sums_windows_exporter.txt
cd windist && shasum -c sha256sums_windows_exporter.txt
rm -f windist/sha256sums_windows_exporter.txt

$(SED) \
-e 's/\/etc\/snclient/${exe-path}/g' \
Expand Down
4 changes: 2 additions & 2 deletions packaging/sha256sums.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
77628892cd8b98afcf3c0012480d6a64f2d33286054bd4527102d558f3ec8641 windows_exporter-386.exe
ed0c5c747a965db2066ad5f37492b9eedb81f1299e94c534c11b1eb6bea3fa73 windows_exporter-amd64.exe
4608137ca21a9f3580233f8fba205936d03ff497423c92c02a66db8de52ef527 windows_exporter-arm64.exe
03bf2ba6ba211f83fb1a5070628832d013a9f364e74f9f19bb6443a0cd915479 windows_exporter-amd64.exe
54e8cb6725fbdffc53c6ab3063644c96da2f2d1e4e6bf4b3145415f41b418497 windows_exporter-arm64.exe
97ad998fe48904a8b085f2c5adc6a6eed85389f5fc298a6d2e94ee2e73cf1728 node_exporter-1.8.2.darwin-amd64.tar.gz
1b50711d389116d0b6d414240e06fbedfc6bbec6a710fef16771c113a1f7e83c node_exporter-1.8.2.darwin-arm64.tar.gz
293ab667ef78eb38915ff5ef019093fb15c7887f072ea70656083d1a17d61858 node_exporter-1.8.2.linux-386.tar.gz
Expand Down

0 comments on commit 6b23c20

Please sign in to comment.