Module: Vanity::Metric::Remote
- Defined in:
- lib/vanity/metric/remote.rb
Overview
To update a remote metric, make a POST request to the metric URL with the content type “application/x-www-form-urlencoded” and the following fields:
-
The
metric
identifier, -
The
timestamp
must be RFC 2616 formatted (in Ruby just callhttpdate
on the Time object), -
The
identity
(optional), -
Pass consecutive values using the field
values[]
, or -
Set values by their index using
values[0]
,values[1]
, etc or -
Set values by series name using
values[foo]
,values[bar]
, etc.
Instance Method Summary collapse
Instance Method Details
#track!(args = nil) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/vanity/metric/remote.rb', line 30 def track!(args = nil) return unless @playground.collecting? , identity, values = track_args(args) params = ["metric=#{CGI.escape @id.to_s}", "timestamp=#{CGI.escape .httpdate}"] params << "identity=#{CGI.escape identity.to_s}" if identity params.concat values.map { |v| "values[]=#{v.to_i}" } params << @remote_url.query if @remote_url.query @mutex.synchronize do @http ||= Net::HTTP.start(@remote_url.host, @remote_url.port) @http.request Net::HTTP::Post.new(@remote_url.path, "Content-Type"=>"application/x-www-form-urlencoded"), params.join("&") end rescue Timeout::Error, StandardError @playground.logger.error "Error sending data for metric #{name}: #{$!}" @http = nil ensure call_hooks , identity, values end |