I have pushed constant tags to be displayed with customevents and customMetrics. Where in appinsights are they mapped with column names?
sub make_entry($type, $data) {
return {
iKey => $intrumentation_key,
time => strftime("%Y-%m-%dT%H:%M:%S.000Z", gmtime),
name => $type,
tags => \%tags,
data => {
baseType => $type,
baseData => $data,
},
}
}
my %tags = (
'ai.user.accountId' => $partner_id,
'ai.user.id' => $ownership->get('SERIAL'),
'ai.internal.nodeName' => $ownership->get('ID'),
'ai.device.osVersion' => get_sw_release(),
'ai.cloud.role' => get_role_replication(),
);
How can I see ai.internal.nodeName on appinsights?