From 6a07aa654c86020c41ce1c67551575e17281666f Mon Sep 17 00:00:00 2001 From: Ivo Anjo Date: Mon, 1 Jul 2024 09:03:27 +0100 Subject: [PATCH] Add extra logging to debug issue --- spec/datadog/profiling/crashtracker_spec.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spec/datadog/profiling/crashtracker_spec.rb b/spec/datadog/profiling/crashtracker_spec.rb index 9aa1d76975b..300ce73e97c 100644 --- a/spec/datadog/profiling/crashtracker_spec.rb +++ b/spec/datadog/profiling/crashtracker_spec.rb @@ -9,7 +9,9 @@ skip_if_profiling_not_supported(self) crash_tracker_pids = `pgrep -f libdatadog-crashtracking-receiver` - expect(crash_tracker_pids).to be_empty, "No crash tracker process should be running, found #{crash_tracker_pids}" + expect(crash_tracker_pids).to be_empty, + "No crash tracker process should be running, found #{crash_tracker_pids}" \ + ", Failure details: ps aux: #{`ps aux`}" end let(:exporter_configuration) { [:agent, 'http://localhost:6006'] }