summaryrefslogtreecommitdiff
path: root/spec/lib
diff options
context:
space:
mode:
authorBen Kochie <superq@gmail.com>2019-01-24 10:15:40 +0100
committerBen Kochie <bjk@gitlab.com>2019-02-06 14:19:51 +0100
commit54438ad04bc27e45b78a3d44466ab4f83a0bff0a (patch)
tree4f184c424cb398ce5ad17f0636e6238ecebd0939 /spec/lib
parent3f3067fc6ab43bfce95ef546acf9c1a0d9dd4ebe (diff)
downloadgitlab-ce-54438ad04bc27e45b78a3d44466ab4f83a0bff0a.tar.gz
Clean up unicorn sampler metric labels
Change `type` and `address` labels to be less generic to avoid conflicts with other systems.
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/gitlab/metrics/samplers/unicorn_sampler_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/metrics/samplers/unicorn_sampler_spec.rb b/spec/lib/gitlab/metrics/samplers/unicorn_sampler_spec.rb
index 771b633a2b9..4b03f3c2532 100644
--- a/spec/lib/gitlab/metrics/samplers/unicorn_sampler_spec.rb
+++ b/spec/lib/gitlab/metrics/samplers/unicorn_sampler_spec.rb
@@ -37,7 +37,7 @@ describe Gitlab::Metrics::Samplers::UnicornSampler do
end
it 'updates metrics type unix and with addr' do
- labels = { type: 'unix', address: socket_address }
+ labels = { socket_type: 'unix', socket_address: socket_address }
expect(subject).to receive_message_chain(:unicorn_active_connections, :set).with(labels, 'active')
expect(subject).to receive_message_chain(:unicorn_queued_connections, :set).with(labels, 'queued')
@@ -69,7 +69,7 @@ describe Gitlab::Metrics::Samplers::UnicornSampler do
end
it 'updates metrics type unix and with addr' do
- labels = { type: 'tcp', address: tcp_socket_address }
+ labels = { socket_type: 'tcp', socket_address: tcp_socket_address }
expect(subject).to receive_message_chain(:unicorn_active_connections, :set).with(labels, 'active')
expect(subject).to receive_message_chain(:unicorn_queued_connections, :set).with(labels, 'queued')