diff --git a/perforator/ui/src/components/ProfileTable/ProfileTable.tsx b/perforator/ui/src/components/ProfileTable/ProfileTable.tsx index 4dacb4f34..749c001c9 100644 --- a/perforator/ui/src/components/ProfileTable/ProfileTable.tsx +++ b/perforator/ui/src/components/ProfileTable/ProfileTable.tsx @@ -125,7 +125,7 @@ const prepareProfileColumns = ({ compact }: { compact?: boolean } = {}) => { }, { id: 'ProfileID', - name: 'ProfileID', + name: 'Profile ID', template: (profile: Profile) => { const href = `/profile/${profile.ProfileID}?timestamp=${parseDate(profile.Timestamp ?? '')!.valueOf()}`; return renderLink(href, profile.ProfileID, true); diff --git a/perforator/ui/src/factory/UIFactory.tsx b/perforator/ui/src/factory/UIFactory.tsx index 73204c6bc..c9e96eab0 100644 --- a/perforator/ui/src/factory/UIFactory.tsx +++ b/perforator/ui/src/factory/UIFactory.tsx @@ -38,7 +38,7 @@ export class UIFactory { clusterName = () => 'Zone'; serviceName = () => 'Service'; - podName = () => 'Name'; + podName = () => 'Pod'; nodeName = () => 'Node'; makeServiceUrl = (cluster: string, service: Optional): Optional => undefined;