{name}
{rendered}
${customMetricValue}`),
},
{
key: 'includeLessThanEvents',
label: t('Show events with values less than'),
to: generateLinkWithQuery(`measurements.${name}:<${customMetricValue}`),
},
]}
triggerProps={{
'aria-label': t('Widget actions'),
size: 'xs',
borderless: true,
showChevron: false,
icon: ,
}}
position="bottom-end"
/>
);
}
const Measurements = styled('div')`
display: grid;
grid-column-gap: ${space(1)};
`;
const Container = styled('div')`
font-size: ${p => p.theme.fontSizeMedium};
margin-bottom: ${space(4)};
`;
const TraceStyledPanel = styled(Panel)`
margin-bottom: 0;
display: flex;
align-items: center;
max-width: fit-content;
font-size: ${p => p.theme.fontSizeSmall};
gap: ${space(0.5)};
> :not(:last-child) {
padding: 0 ${space(1)};
}
`;
const ValueRow = styled('div')`
display: flex;
align-items: center;
`;
const Value = styled('span')`
font-size: ${p => p.theme.fontSizeExtraLarge};
`;
const StyledPanel = styled(Panel)`
padding: ${space(1)} ${space(1.5)};
margin-bottom: ${space(1)};
display: flex;
`;
const StyledDropdownMenuControl = styled(DropdownMenu)`
display: block;
margin-left: auto;
`;
const StyledMeasurementsName = styled('div')`
max-width: 200px;
${p => p.theme.overflowEllipsis};
`;