MCPcopy
hub / github.com/redpanda-data/console / isSystemTag

Function isSystemTag

frontend/src/components/constants.ts:38–38  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

36
37/** Returns true if the tag key is a system tag that should be hidden from users. */
38export const isSystemTag = (key: string): boolean => key.startsWith('__') || isCloudManagedTagKey(key);
39
40/** User-visible tags (system tags filtered out) as `{ key, value }` entries. */
41export const getUserTagEntries = (tags: Record<string, string>): { key: string; value: string }[] =>

Callers 4

constants.test.tsFile · 0.90
DetailsDialogFunction · 0.90
usePipelineSaveFunction · 0.90
getUserTagEntriesFunction · 0.85

Calls 1

isCloudManagedTagKeyFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…