This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathnewrelic_varnish_plugin
executable file
·193 lines (178 loc) · 5.85 KB
/
newrelic_varnish_plugin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#! /usr/bin/env ruby
#
# Copyright 2012 Varnish Software AS
#
# Written by Tollef Fog Heen <[email protected]>
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
require 'rubygems'
require "bundler/setup"
require 'rexml/document'
require "newrelic_plugin"
module VarnishAgent
def VarnishAgent.groups()
return {
'Request rates' => {
'metrics' => %w(cache_hit cache_hitpass cache_miss backend_conn backend_unhealthy client_req client_conn)
},
'Hit rates' => {
'metrics' => %w(client_req cache_hit cache_miss cache_hitpass)
},
'Backend Traffic' => {
'metrics' => %w(backend_conn backend_unhealthy backend_busy backend_fail backend_reuse backend_recycle backend_unused backend_req)
},
'Number of objects' => {
'metrics' => %w(n_object n_objcore n_objhead)
},
'Transfer rates' => {
'metrics' => %w(s_bodybytes s_hdrbytes)
},
'Thread status' => {
'metrics' => %w(n_wrk n_wrk_create n_wrk_failed n_wrk_max n_wrk_overflow n_wrk_drop)
},
'Memory usage' => {
'metrics' => %w(sm_balloc sma_nbytes sms_nbytes),
'regex_metrics' => [ /^(SM[AF]\.[^.]+)\.g_(bytes|space)/ ]
},
'Misbehaviour' => {
'metrics' => %w(client_drop backend_unhealthy fetch_failed backend_busy n_wrk_failed n_wrk_max n_wrk_drop n_wrk_lqueue losthdr n_objoverflow esi_errors esi_warnings client_drop_late accept_fail),
'regex_metrics' => [/^(SM[AF]\.[^.]+)\.c_fail/ ]
},
}
end
def VarnishAgent.varnishstat(vname = nil)
cmd = [ "varnishstat", "-1", "-x" ]
if not vname.nil?
cmd.push("-n", vname.to_s)
end
r = ""
IO::popen(cmd.join(' '), mode="r") do |io|
r += io.read()
end
doc = REXML::Document.new(r)
r = {}
doc.elements.each('varnishstat/stat') do |i|
name, others = i.elements.partition{|e| e.name == 'name'}
r[name.first.text] = Hash[others.map{|e| [e.name, e.text]}]
end
return r
end
class Agent < NewRelic::Plugin::Agent::Base
agent_guid "com.varnish-software.newrelic-stat"
agent_version '0.0.5'
agent_human_labels("Varnish") { "#{@name||"varnish"}[#{@vname||"default"}]"}
agent_config_options :name, :vname
# metric_human_label { "Varnish[#{agent.instance_label}]: #{config[:description]}" }
def unit(name)
case name.to_s
when /^client_(conn|drop)/
"connections"
when /^client_(req|hit|miss)/
"requests"
when /^cache_(hit|miss)/
"requests"
when /^backend_/
"connections"
when /^fetch_/
"fetch"
when /^n_(obj|expired|lru)/
"objects"
when /^n_wrk/
"threads"
when /^n_backend/
"backends"
when /^n_/
"structs"
when /^s_sess/
"sessions"
when /^s_(req|pipe|pass|fetch)/
"requests"
when /(bytes|balloc)$/
"bytes"
when /g_space$/
"bytes"
when /^sess/
"sessions"
when /^losthdr/
"requests"
when /^esi_errors/
"errors"
when /^esi_warnings/
"warnings"
when /^accept_fail/
"accepts"
when /c_fail$/
"allocations"
else
raise "Unknown unit: #{name}"
end
end
def poll_cycle
stats = VarnishAgent.varnishstat(@vname)
VarnishAgent.groups.each do |gname, group|
group["metrics"].each do |metric|
stat = stats[metric]
if stat.nil?
next
end
report(metric, "#{gname}/#{stat["description"]}", stat)
end
if group.include?("regex_metrics")
group["regex_metrics"].each do |regex|
stats.each do |sname, stat|
if regex.match(sname)
report(sname, "#{gname}/#{$1} #{stat["description"]}", stat)
end
end
end
end
end
rescue => e
$stderr.puts "#{e}: #{e.backtrace.join("\n ")}"
end
def report(name, description, stat)
if stat["flag"] == "a"
report_counter_metric description, unit(name) + "/sec", stat["value"].to_i
else
report_metric description, unit(name), stat["value"].to_i
end
end
def report_counter_metric(metric, type, value)
@processors ||= {}
if @processors[metric].nil?
@processors[metric] = NewRelic::Processor::EpochCounter.new
end
report_metric metric, type, @processors[metric].process(value)
end
end
NewRelic::Plugin::Setup.install_agent :varnish,VarnishAgent
#
# Launch the agent (never returns)
#
NewRelic::Plugin::Run.setup_and_run
end