Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 7da1051

Browse files
committed
sync with 3.7
1 parent ee8b3c3 commit 7da1051

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
FROM rabbitmq:3.6.14-management
1+
FROM rabbitmq:3.7-management
22
MAINTAINER Ilya Khaprov <[email protected]>
33

44
# prometheus exporter plugin
55
ADD ["plugins/accept-*", \
66
"plugins/prometheus-*", \
7-
"plugins/prometheus_httpd-*", \
7+
"plugins/prometheus_httpd-*",\
8+
"plugins/prometheus_cowboy-*", \
89
"plugins/prometheus_process_collector-*", \
910
"plugins/prometheus_rabbitmq_exporter-*", \
1011
"/usr/lib/rabbitmq/lib/rabbitmq_server-${RABBITMQ_VERSION}/plugins/"]
1112
RUN chmod a+r /usr/lib/rabbitmq/lib/rabbitmq_server-${RABBITMQ_VERSION}/plugins/prometheus*.ez /usr/lib/rabbitmq/lib/rabbitmq_server-${RABBITMQ_VERSION}/plugins/accept*.ez \
12-
&& rabbitmq-plugins enable --offline prometheus accept prometheus_rabbitmq_exporter prometheus_process_collector prometheus_httpd \
13+
&& rabbitmq-plugins enable --offline prometheus accept prometheus_rabbitmq_exporter prometheus_process_collector prometheus_httpd prometheus_cowboy \
1314
&& chmod -R 777 /etc/rabbitmq

Dockerfile.pure

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
FROM rabbitmq:3.6.14-management
1+
FROM rabbitmq:3.7-management
22
MAINTAINER Ilya Khaprov <[email protected]>
33

44
# prometheus exporter plugin
55
ADD ["plugins/accept-*", \
66
"plugins/prometheus-*", \
77
"plugins/prometheus_httpd-*", \
8+
"plugins/prometheus_cowboy-*", \
89
"plugins/prometheus_rabbitmq_exporter-*", \
910
"/usr/lib/rabbitmq/lib/rabbitmq_server-${RABBITMQ_VERSION}/plugins/"]
1011
RUN chmod a+r /usr/lib/rabbitmq/lib/rabbitmq_server-${RABBITMQ_VERSION}/plugins/prometheus*.ez /usr/lib/rabbitmq/lib/rabbitmq_server-${RABBITMQ_VERSION}/plugins/accept*.ez \
11-
&& rabbitmq-plugins enable --offline accept prometheus prometheus_rabbitmq_exporter prometheus_httpd \
12+
&& rabbitmq-plugins enable --offline accept prometheus prometheus_rabbitmq_exporter prometheus_httpd prometheus_cowboy \
1213
&& chmod -R 777 /etc/rabbitmq

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ PROJECT_DESCRIPTION = Prometheus.io exporter as a RabbitMQ Managment Plugin plug
44

55
DEPS = rabbitmq_management prometheus prometheus_httpd accept \
66
prometheus_process_collector prometheus_cowboy
7-
dep_prometheus = hex 3.4.4
8-
dep_prometheus_process_collector = hex 1.3.0
7+
dep_prometheus = hex 3.4.5
8+
dep_prometheus_process_collector = hex 1.3.1
99
dep_prometheus_httpd = hex 2.1.8
1010
dep_accept = hex 0.3.3
1111
dep_prometheus_cowboy = hex 0.1.4

0 commit comments

Comments
 (0)