From c3e90ed3f360e818d04fecfdafe66440433cb311 Mon Sep 17 00:00:00 2001 From: Artur Sarlo Date: Thu, 19 Mar 2026 21:22:15 +0000 Subject: [PATCH] Fix missing cantainer metadata information from profiling upload --- gprofiler/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gprofiler/main.py b/gprofiler/main.py index 7e4e8ed77..628c85e2b 100644 --- a/gprofiler/main.py +++ b/gprofiler/main.py @@ -489,7 +489,7 @@ def _snapshot(self) -> None: if NoopProfiler.is_noop_profiler(self.system_profiler): temp_merged = concatenate_profiles( process_profiles=process_profiles, - container_names_client=self._profiler_state.container_names_client, + container_names_client=None, enrichment_options=self._enrichment_options, metadata=metadata, metrics=metrics, @@ -500,7 +500,7 @@ def _snapshot(self) -> None: temp_merged = merge_profiles( perf_pid_to_profiles=system_result, process_profiles=process_profiles, - container_names_client=self._profiler_state.container_names_client, + container_names_client=None, enrichment_options=self._enrichment_options, metadata=metadata, metrics=metrics,