Skip to content

Commit 91da38f

Browse files
committed
feat: only print metrics warning once per thread
1 parent 93aa50b commit 91da38f

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

lib/pact/utils/metrics.rb

+19-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ module Utils
99
class Metrics
1010

1111
def self.report_metric(event, category, action, value = 1)
12+
do_once_per_thread(:pact_metrics_message_shown) do
13+
if track_events?
14+
Pact.configuration.output_stream.puts "pact WARN: Please note: we are tracking events anonymously to gather important usage statistics like Pact-Ruby version
15+
and operating system. To disable tracking, set the 'PACT_DO_NOT_TRACK' environment
16+
variable to 'true'."
17+
end
18+
end
19+
1220
in_thread do
1321
begin
1422
if track_events?
15-
Pact.configuration.output_stream.puts "WARN: Please note: we are tracking events anonymously to gather important usage statistics like Pact-Ruby version
16-
and operating system. To disable tracking, set the 'PACT_DO_NOT_TRACK' environment
17-
variable to 'true'."
18-
1923
uri = URI('https://www.google-analytics.com/collect')
2024
req = Net::HTTP::Post.new(uri)
2125
req.set_form_data(create_tracking_event(event, category, action, value))
@@ -31,6 +35,7 @@ def self.report_metric(event, category, action, value = 1)
3135
end
3236

3337
private
38+
3439
def self.handle_error e
3540
if ENV['PACT_METRICS_DEBUG'] == 'true'
3641
Pact.configuration.output_stream.puts("DEBUG: #{e.inspect}\n" + e.backtrace.join("\n"))
@@ -43,6 +48,16 @@ def self.in_thread
4348
end
4449
end
4550

51+
# not super safe to use the thread, but it's good enough for this usecase
52+
def self.do_once_per_thread(key)
53+
result = nil
54+
if !Thread.current[key]
55+
result = yield
56+
end
57+
Thread.current[key] = true
58+
result
59+
end
60+
4661
def self.create_tracking_event(event, category, action, value)
4762
{
4863
"v" => 1,

0 commit comments

Comments
 (0)