From b99d0c203df8a436ba42017e77d1c24c47a18e7f Mon Sep 17 00:00:00 2001 From: Dario Gieselaar Date: Mon, 8 Nov 2021 13:07:43 +0100 Subject: [PATCH] Consistent label formatting --- x-pack/plugins/actions/server/lib/action_executor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/actions/server/lib/action_executor.ts b/x-pack/plugins/actions/server/lib/action_executor.ts index 518d4582de2b..f8a732212b32 100644 --- a/x-pack/plugins/actions/server/lib/action_executor.ts +++ b/x-pack/plugins/actions/server/lib/action_executor.ts @@ -105,7 +105,7 @@ export class ActionExecutor { name: `execute_action`, type: 'actions', labels: { - actionId, + actions_action_id: actionId, }, }, async (span) => { @@ -135,7 +135,7 @@ export class ActionExecutor { if (span) { span.name = `execute_action ${actionTypeId}`; span.addLabels({ - actionTypeId, + actions_action_type_id: actionTypeId, }); }