From 533e1ec1b921d2d246695f6edc441a8231790e9a Mon Sep 17 00:00:00 2001 From: James Wong <66471232+jameswong2000@users.noreply.github.com> Date: Fri, 21 Oct 2022 10:33:39 +0800 Subject: [PATCH] add hostname in profiler (#20909) --- .../contrib/profiler/browser/profiler.contribution.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/sql/workbench/contrib/profiler/browser/profiler.contribution.ts b/src/sql/workbench/contrib/profiler/browser/profiler.contribution.ts index cdbb00f001..9ad3ae8f74 100644 --- a/src/sql/workbench/contrib/profiler/browser/profiler.contribution.ts +++ b/src/sql/workbench/contrib/profiler/browser/profiler.contribution.ts @@ -95,6 +95,10 @@ const profilerViewTemplateSchema: IJSONSchema = { { name: 'DatabaseName', eventsMapped: ['database_name'] + }, + { + name: 'HostName', + eventsMapped: ['client_hostname'] } ] },