Skip to content

Commit 41291a7

Browse files
committed
Upgrade bosh_exporter to v3.1.0
1 parent 0a19056 commit 41291a7

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

config/blobs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ blackbox_exporter/blackbox_exporter-0.13.0.linux-amd64.tar.gz:
66
size: 6992513
77
object_id: 79855d2a-71a2-4b9f-7592-1d131997b1f5
88
sha: fe7bd72d00e05759918e9592e9085d181758a9ab
9-
bosh_exporter/bosh_exporter-3.0.1.linux-amd64.tar.gz:
10-
size: 4766620
11-
object_id: 8e1ac4c3-abc7-4b64-7fb5-bb1191c5163d
12-
sha: 2c3421f1d11d99ce6927454e75fa54da1844c664
9+
bosh_exporter/bosh_exporter-3.1.0.linux-amd64.tar.gz:
10+
size: 6976228
11+
object_id: 0b5d4e92-211d-4fac-60e3-a32c813047c1
12+
sha: 5b95074c41855f897701a8af03a9358cd2df49d3
1313
bosh_tsdb_exporter/bosh_tsdb_exporter-0.2.0.linux-amd64.tar.gz:
1414
size: 3517628
1515
object_id: 803f9cdf-4cc8-4dcf-4be4-1811ae11a6c8

jobs/bosh_exporter/spec

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ properties:
3131
description: "Comma separated AZs to filter"
3232
bosh_exporter.filter.collectors:
3333
description: "Comma separated collectors to filter ('Deployments', 'Jobs')"
34+
bosh_exporter.filter.cidrs:
35+
description: "Comma separated CIDR to filter instance IPs"
3436
bosh_exporter.log_format:
3537
description: "Set the log target and format. Example: 'logger:syslog?appname=bob&local=7' or 'logger:stdout?json=true'"
3638
bosh_exporter.log_level:

jobs/bosh_exporter/templates/bin/bosh_exporter_ctl

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ case $1 in
6363
<% if_p('bosh_exporter.filter.collectors') do |collectors| %> \
6464
--filter.collectors="<%= collectors %>" \
6565
<% end %> \
66+
<% if_p('bosh_exporter.filter.cidrs') do |cidrs| %> \
67+
--filter.cidrs="<%= cidrs %>" \
68+
<% end %> \
6669
<% if_p('bosh_exporter.log_format') do |log_format| %> \
6770
--log.format="<%= log_format %>" \
6871
<% end %> \

packages/bosh_exporter/packaging

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ cp -a ${BOSH_COMPILE_TARGET}/common/* ${BOSH_INSTALL_TARGET}/common
88

99
# Extract bosh_exporter package
1010
mkdir -p ${BOSH_INSTALL_TARGET}/bin
11-
tar xzvf ${BOSH_COMPILE_TARGET}/bosh_exporter/bosh_exporter-3.0.1.linux-amd64.tar.gz
12-
cp -a ${BOSH_COMPILE_TARGET}/bosh_exporter-3.0.1.linux-amd64/* ${BOSH_INSTALL_TARGET}/bin
11+
tar xzvf ${BOSH_COMPILE_TARGET}/bosh_exporter/bosh_exporter-3.1.0.linux-amd64.tar.gz
12+
cp -a ${BOSH_COMPILE_TARGET}/bosh_exporter-3.1.0.linux-amd64/* ${BOSH_INSTALL_TARGET}/bin

packages/bosh_exporter/spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name: bosh_exporter
33

44
files:
55
- common/utils.sh
6-
- bosh_exporter/bosh_exporter-3.0.1.linux-amd64.tar.gz
6+
- bosh_exporter/bosh_exporter-3.1.0.linux-amd64.tar.gz

0 commit comments

Comments
 (0)