forked from pact-foundation/pact-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add telemetry (pact-foundation#256)
- Loading branch information
Showing
5 changed files
with
148 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
require 'securerandom' | ||
require 'digest' | ||
require 'socket' | ||
require 'pact/version' | ||
require 'net/http' | ||
|
||
module Pact | ||
module Utils | ||
class Metrics | ||
|
||
def self.report_metric(event, category, action, value = 1) | ||
in_thread do | ||
begin | ||
if track_events? | ||
Pact.configuration.output_stream.puts "WARN: Please note: we are tracking events anonymously to gather important usage statistics like Pact-Ruby version | ||
and operating system. To disable tracking, set the 'PACT_DO_NOT_TRACK' environment | ||
variable to 'true'." | ||
|
||
uri = URI('https://www.google-analytics.com/collect') | ||
req = Net::HTTP::Post.new(uri) | ||
req.set_form_data(create_tracking_event(event, category, action, value)) | ||
|
||
Net::HTTP.start(uri.hostname, uri.port, read_timeout:2, open_timeout:2, :use_ssl => true ) do |http| | ||
http.request(req) | ||
end | ||
end | ||
rescue StandardError => e | ||
handle_error(e) | ||
end | ||
end | ||
end | ||
|
||
private | ||
def self.handle_error e | ||
if ENV['PACT_METRICS_DEBUG'] == 'true' | ||
Pact.configuration.output_stream.puts("DEBUG: #{e.inspect}\n" + e.backtrace.join("\n")) | ||
end | ||
end | ||
|
||
def self.in_thread | ||
Thread.new do | ||
yield | ||
end | ||
end | ||
|
||
def self.create_tracking_event(event, category, action, value) | ||
{ | ||
"v" => 1, | ||
"t" => "event", | ||
"tid" => "UA-117778936-1", | ||
"cid" => calculate_cid, | ||
"an" => "Pact Ruby", | ||
"av" => Pact::VERSION, | ||
"aid" => "pact-ruby", | ||
"aip" => 1, | ||
"ds" => ENV['PACT_EXECUTING_LANGUAGE'] ? "client" : "cli", | ||
"cd2" => ENV['CI'] == "true" ? "CI" : "unknown", | ||
"cd3" => RUBY_PLATFORM, | ||
"cd6" => ENV['PACT_EXECUTING_LANGUAGE'] || "unknown", | ||
"cd7" => ENV['PACT_EXECUTING_LANGUAGE_VERSION'], | ||
"el" => event, | ||
"ec" => category, | ||
"ea" => action, | ||
"ev" => value | ||
} | ||
end | ||
|
||
def self.track_events? | ||
ENV['PACT_DO_NOT_TRACK'] != 'true' | ||
end | ||
|
||
def self.calculate_cid | ||
if RUBY_PLATFORM.include? "windows" | ||
hostname = ENV['COMPUTERNAME'] | ||
else | ||
hostname = ENV['HOSTNAME'] | ||
end | ||
if !hostname | ||
hostname = Socket.gethostname | ||
end | ||
Digest::MD5.hexdigest hostname || SecureRandom.urlsafe_base64(5) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
require 'rspec' | ||
require 'pact/utils/metrics' | ||
|
||
describe Pact::Utils::Metrics do | ||
|
||
before do | ||
stub_request(:post, "https://www.google-analytics.com/collect").to_return(status: 200, body: "", headers: {}) | ||
ENV['COMPUTERNAME'] = 'test' | ||
ENV['HOSTNAME'] = 'test' | ||
end | ||
|
||
describe ".report_metric" do | ||
subject { Pact::Utils::Metrics.report_metric("Event", "Category", "Action", "Value") } | ||
context 'when do not track is not set' do | ||
let(:expected_event) { { | ||
"v" => 1, | ||
"t" => "event", | ||
"tid" => "UA-117778936-1", | ||
"cid" => "098f6bcd4621d373cade4e832627b4f6", | ||
"an" => "Pact Ruby", | ||
"av" => Pact::VERSION, | ||
"aid" => "pact-ruby", | ||
"aip" => 1, | ||
"ds" => ENV['PACT_EXECUTING_LANGUAGE'] ? "client" : "cli", | ||
"cd2" => ENV['CI'] == "true" ? "CI" : "unknown", | ||
"cd3" => RUBY_PLATFORM, | ||
"cd6" => ENV['PACT_EXECUTING_LANGUAGE'] || "unknown", | ||
"cd7" => ENV['PACT_EXECUTING_LANGUAGE_VERSION'], | ||
"el" => "Event", | ||
"ec" => "Category", | ||
"ea" => "Action", | ||
"ev" => "Value" | ||
} } | ||
|
||
it 'sends metrics' do | ||
expect_any_instance_of(Net::HTTP::Post).to receive(:set_form_data).with(expected_event) | ||
expect(Net::HTTP).to receive(:start) | ||
subject | ||
end | ||
end | ||
context 'when do not track is set to true' do | ||
before do | ||
ENV['PACT_DO_NOT_TRACK'] = "true" | ||
end | ||
it 'does not send metrics' do | ||
expect(Net::HTTP).to_not receive(:post) | ||
subject | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters