@odigos/ui-kit 0.0.292 → 0.0.294

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/CHANGELOG.md +69 -76
  2. package/Makefile +1 -1
  3. package/lib/chunks/{helpers-BGOJ3YRA.js → helpers-BbLwXwCP.js} +1 -1
  4. package/lib/chunks/{index-BIET8cd3.js → index-DrntqYmU.js} +1 -1
  5. package/lib/chunks/{source-instrument-form-context-BmNrVjHW.js → source-instrument-form-context-TaNVlKMt.js} +1 -1
  6. package/lib/chunks/ui-components-CnvJIMbW.js +2116 -0
  7. package/lib/components/index.d.ts +1 -0
  8. package/lib/components/ping/index.d.ts +5 -0
  9. package/lib/components/table/styled.d.ts +2 -4
  10. package/lib/components/table/types.d.ts +1 -3
  11. package/lib/components/tag/index.d.ts +8 -0
  12. package/lib/components/tooltip/index.d.ts +2 -0
  13. package/lib/components/typography/index.d.ts +1 -0
  14. package/lib/components.js +1 -1
  15. package/lib/constants/insights/system.d.ts +3 -1
  16. package/lib/constants/strings/index.d.ts +0 -1
  17. package/lib/constants.js +1 -1
  18. package/lib/containers/insights/findings/helpers.d.ts +2 -0
  19. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/db-access-view/helpers.d.ts +18 -0
  20. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/db-access-view/index.d.ts +7 -0
  21. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/db-access-view/map.d.ts +7 -0
  22. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/db-access-view/node.d.ts +6 -0
  23. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/db-access-view/types.d.ts +34 -0
  24. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/histogram.d.ts +7 -0
  25. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/index.d.ts +1 -1
  26. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/libraries/index.d.ts +7 -0
  27. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/libraries/types.d.ts +7 -0
  28. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/outbound-peers-view/helpers.d.ts +21 -0
  29. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/outbound-peers-view/index.d.ts +7 -0
  30. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/outbound-peers-view/map.d.ts +7 -0
  31. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/outbound-peers-view/node.d.ts +6 -0
  32. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/outbound-peers-view/types.d.ts +25 -0
  33. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/service-call-edges-view/helpers.d.ts +20 -0
  34. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/service-call-edges-view/index.d.ts +7 -0
  35. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/service-call-edges-view/map.d.ts +7 -0
  36. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/service-call-edges-view/node.d.ts +6 -0
  37. package/lib/containers/insights/transactions/drawer/baselines/data-drawer/service-call-edges-view/types.d.ts +23 -0
  38. package/lib/containers/overview/search/builder.d.ts +1 -1
  39. package/lib/containers/pipeline-collectors/general-info/helpers/get-general-text-cards.d.ts +1 -1
  40. package/lib/containers/pipeline-collectors/general-info/index.d.ts +1 -0
  41. package/lib/containers.js +650 -527
  42. package/lib/contexts.js +1 -1
  43. package/lib/functions/safe-json-parse/index.d.ts +1 -1
  44. package/lib/functions.js +1 -1
  45. package/lib/hooks.js +1 -1
  46. package/lib/icons/common/db-icon/index.d.ts +2 -0
  47. package/lib/icons/common/index.d.ts +1 -0
  48. package/lib/icons.js +1 -1
  49. package/lib/snippets.js +1 -1
  50. package/lib/store/index.d.ts +0 -1
  51. package/lib/store.js +1 -1
  52. package/lib/theme.js +1 -1
  53. package/lib/types.js +1 -1
  54. package/lib/visuals.js +1 -1
  55. package/package.json +7 -7
  56. package/lib/chunks/ui-components-DLJJffgA.js +0 -2091
  57. package/lib/store/useDarkMode.d.ts +0 -19
@@ -30,6 +30,7 @@ export * from './modal';
30
30
  export * from './navbar';
31
31
  export * from './no-data';
32
32
  export * from './note';
33
+ export * from './ping';
33
34
  export * from './popup';
34
35
  export * from './radio';
35
36
  export * from './radio-card';
@@ -0,0 +1,5 @@
1
+ import { type CSSProperties, type FC } from 'react';
2
+ export interface PingProps {
3
+ color?: CSSProperties['backgroundColor'];
4
+ }
5
+ export declare const Ping: FC<PingProps>;
@@ -25,8 +25,6 @@ export declare const ExpandedContent: IStyledComponent<'web', DivProps<ExpandedC
25
25
  interface ThProps {
26
26
  $variant: TableVariant;
27
27
  $backgroundColor?: CSSProperties['backgroundColor'];
28
- $flex?: TableColumn['flex'];
29
- $minWidth?: TableColumn['minWidth'];
30
28
  $isFirst: boolean;
31
29
  $isLast: boolean;
32
30
  $autoWidth?: boolean;
@@ -44,8 +42,6 @@ interface TdProps {
44
42
  $isLastRow: boolean;
45
43
  $isFirstCell: boolean;
46
44
  $isLastCell: boolean;
47
- $flex?: TableColumn['flex'];
48
- $minWidth?: TableColumn['minWidth'];
49
45
  $autoWidth?: boolean;
50
46
  $resolvedWidth?: number;
51
47
  }
@@ -53,6 +49,8 @@ export declare const Td: IStyledComponent<'web', DivProps<TdProps>>;
53
49
  export declare const MeasurementLayer: IStyledComponent<'web', DivProps>;
54
50
  export declare const MeasurementCell: IStyledComponent<'web', DivProps>;
55
51
  export declare const MeasurementHead: IStyledComponent<'web', DivProps>;
52
+ /** Sort/filter controls — never shrink, so they don't steal width from the title. */
53
+ export declare const HeadActions: IStyledComponent<'web', DivProps>;
56
54
  interface HeadWrapperProps {
57
55
  $textAlign?: TableColumn['textAlign'];
58
56
  }
@@ -25,13 +25,11 @@ export interface TableColumnFilterOverride {
25
25
  export interface TableColumn {
26
26
  key: string;
27
27
  label: string;
28
- withTooltip?: boolean;
28
+ /** Always-on header tooltip (e.g. column help text). Body cells use TruncatableTypography for overflow. */
29
29
  tooltip?: string;
30
30
  noSort?: boolean;
31
31
  noFilter?: boolean;
32
32
  filterOverride?: TableColumnFilterOverride;
33
- flex?: CSSProperties['flex'];
34
- minWidth?: CSSProperties['minWidth'];
35
33
  textAlign?: CSSProperties['textAlign'];
36
34
  }
37
35
  export interface TableRowCell {
@@ -6,16 +6,24 @@ export declare enum TagVariants {
6
6
  Yellow = "yellow",
7
7
  Blue = "blue",
8
8
  Pink = "pink",
9
+ Red = "red",
9
10
  Green = "green",
10
11
  Loader = "loader"
11
12
  }
13
+ export declare enum TagSizes {
14
+ Small = "small",
15
+ Medium = "medium",
16
+ Large = "large"
17
+ }
12
18
  export interface TagProps {
13
19
  variant?: TagVariants;
20
+ size?: TagSizes;
14
21
  label: string;
15
22
  leftIcon?: SVG;
16
23
  rightIcon?: SVG;
17
24
  onClick?: () => void;
18
25
  disabled?: boolean;
19
26
  flex?: CSSProperties['flex'];
27
+ minWidth?: CSSProperties['minWidth'];
20
28
  }
21
29
  export declare const Tag: FC<TagProps>;
@@ -1,6 +1,8 @@
1
1
  import { type CSSProperties, type PropsWithChildren, type FC } from 'react';
2
2
  import type { SVG } from '../../types';
3
+ import { type TypographyProps } from '../typography';
3
4
  interface TooltipProps extends PropsWithChildren {
5
+ typographyProps?: Omit<TypographyProps, 'children'>;
4
6
  withIcon?: boolean;
5
7
  titleIcon?: SVG;
6
8
  title?: string;
@@ -42,6 +42,7 @@ export interface TypographyProps {
42
42
  variant?: TypographyVariants;
43
43
  color?: TypographyColor | CSSProperties['color'];
44
44
  size?: TypographySize;
45
+ fontFamily?: keyof DefaultTheme['font_family'];
45
46
  weight?: CSSProperties['fontWeight'];
46
47
  opacity?: CSSProperties['opacity'];
47
48
  align?: CSSProperties['textAlign'];
package/lib/components.js CHANGED
@@ -1 +1 @@
1
- export{$ as Autocomplete,c1 as Badge,iS as BarChart,B as Button,i as ButtonSize,nF as ButtonTab,nG as ButtonTabList,j as ButtonVariants,C as CenterThis,s as Checkbox,nH as CheckboxList,a1 as CheckboxSize,eF as CliCommand,b6 as Code,eo as Condition,eq as Conditions,nI as DEFAULT_TIME_UNITS,E as DataCard,a6 as Divider,D as Drawer,aA as DropData,d8 as DropDataAlignX,hk as DropDataAlignY,u as DropDown,nJ as ErrorBoundary,k as FieldMessage,d as FieldTitle,F as FlexColumn,h as FlexRow,jf as GaugeChart,jg as GaugeChartVariant,nK as Header,nL as HoverActions,nM as INFO_ROW_HEIGHT_PX,ee as IconButton,ef as IconButtonSize,eK as IconGroup,eD as InfoRow,y as Input,a7 as InputCardTable,x as InputList,I as InputTable,cU as Island,cZ as IslandPosition,b2 as Loader,hl as Modal,nN as ModalBody,nO as Navbar,N as NoData,G as Note,nP as Overlay,b_ as Padding,iB as PageContent,nQ as Popup,d8 as PopupAlignX,hk as PopupAlignY,au as Radio,em as RadioCard,nR as RadioGroup,c6 as RadioSize,b1 as ScrollY,b3 as Search,Y as SectionCard,nS as SectionCardSize,_ as Segment,a8 as SegmentSize,eZ as SegmentVariant,iL as SelectWindowHours,b$ as SkeletonLoader,jE as StatusCard,jj as Stepper,iK as TIME_WINDOW_DEFAULT_VALUE,e_ as Table,nT as TableContainer,nU as TableTitleWrap,e$ as TableVariant,nV as TableWrap,K as Tag,bC as TagVariants,v as TextArea,iC as TextCard,r as TimeInput,o as Toggle,nW as ToggleCodeComponent,p as ToggleLabelAlign,nX as ToggleList,q as ToggleSize,gU as ToggleVariant,T as Tooltip,iO as TraceView,c7 as TruncatableTypography,e as Typography,f as TypographyColor,g as TypographySize,ej as TypographyVariants,ji as UpgradeRequiredWrapper,nY as VerticalScroll,W as WarningModal,iM as getWindowHoursButtonProps,nZ as resolveTypographyColor}from"./chunks/ui-components-DLJJffgA.js";import"react/jsx-runtime";import"styled-components";import"./icons.js";import"zustand";import"react";import"javascript-time-ago";import"javascript-time-ago/locale/en";import"react-dom";import"prism-react-renderer";import"zustand/middleware";import"react-error-boundary";import"virtua";
1
+ export{$ as Autocomplete,c1 as Badge,iV as BarChart,B as Button,i as ButtonSize,nI as ButtonTab,nJ as ButtonTabList,j as ButtonVariants,C as CenterThis,s as Checkbox,nK as CheckboxList,a1 as CheckboxSize,eI as CliCommand,b6 as Code,er as Condition,et as Conditions,nL as DEFAULT_TIME_UNITS,E as DataCard,a6 as Divider,D as Drawer,aA as DropData,d8 as DropDataAlignX,hn as DropDataAlignY,u as DropDown,nM as ErrorBoundary,k as FieldMessage,d as FieldTitle,F as FlexColumn,h as FlexRow,jj as GaugeChart,jk as GaugeChartVariant,nN as Header,nO as HoverActions,nP as INFO_ROW_HEIGHT_PX,eh as IconButton,ei as IconButtonSize,eN as IconGroup,eG as InfoRow,y as Input,a7 as InputCardTable,x as InputList,I as InputTable,cU as Island,cZ as IslandPosition,b2 as Loader,ho as Modal,nQ as ModalBody,nR as Navbar,N as NoData,G as Note,nS as Overlay,b_ as Padding,iE as PageContent,iW as Ping,nT as Popup,d8 as PopupAlignX,hn as PopupAlignY,au as Radio,ep as RadioCard,nU as RadioGroup,c6 as RadioSize,b1 as ScrollY,b3 as Search,Y as SectionCard,nV as SectionCardSize,_ as Segment,a8 as SegmentSize,f0 as SegmentVariant,iO as SelectWindowHours,b$ as SkeletonLoader,jI as StatusCard,jn as Stepper,iN as TIME_WINDOW_DEFAULT_VALUE,f1 as Table,nW as TableContainer,nX as TableTitleWrap,f2 as TableVariant,nY as TableWrap,K as Tag,dU as TagSizes,bC as TagVariants,v as TextArea,iF as TextCard,r as TimeInput,o as Toggle,nZ as ToggleCodeComponent,p as ToggleLabelAlign,n_ as ToggleList,q as ToggleSize,gX as ToggleVariant,T as Tooltip,iR as TraceView,c7 as TruncatableTypography,e as Typography,f as TypographyColor,g as TypographySize,em as TypographyVariants,jm as UpgradeRequiredWrapper,n$ as VerticalScroll,W as WarningModal,iP as getWindowHoursButtonProps,o0 as resolveTypographyColor}from"./chunks/ui-components-CnvJIMbW.js";import"react/jsx-runtime";import"styled-components";import"./icons.js";import"zustand";import"react";import"javascript-time-ago";import"javascript-time-ago/locale/en";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"virtua";
@@ -25,7 +25,9 @@ export declare const HELPER_FLUSH_INTERVAL = "How often pending learning data an
25
25
  export declare const HINT_FLUSH_INTERVAL = "Default: 15 \u00B7 Maximum: 300";
26
26
  export declare const LABEL_AUTO_TRANSACTION_GUARDRAIL = "Auto-enable transaction guardrail when a service is promoted";
27
27
  export declare const HELPER_AUTO_TRANSACTION_GUARDRAIL = "When a service finishes promoting (every transaction leaves learning), automatically create an enforced allowed_transactions guardrail. Applies only from that moment forward \u2014 services already promoted are not backfilled; enable their guardrail from the by-service transactions menu.";
28
- export declare const HELPER_IDENTITY_DIMENSIONS = "Low-cardinality only. Each enabled dimension multiplies transaction count, resident memory, and baseline rows. Good: http.response.status_code, rpc.grpc.status_code. Bad: user.id, URLs, request ids. Values come from the entry span only.";
28
+ export declare const HELPER_IDENTITY_DIMENSIONS = "Low-cardinality only. Each enabled dimension multiplies transaction count, resident memory, and baseline rows.";
29
+ export declare const HELPER_IDENTITY_DIMENSIONS_GOOD: string[];
30
+ export declare const HELPER_IDENTITY_DIMENSIONS_BAD: string[];
29
31
  export declare const HINT_IDENTITY_DIMENSIONS = "Up to 5 enabled at once. Changing dimensions creates new transaction identities.";
30
32
  export declare const LABEL_IDENTITY_EMPTY = "No dimensions configured \u2014 transactions use the entry span name only.";
31
33
  export declare const BTN_ADD_IDENTITY_DIMENSION = "Add dimension";
@@ -6,7 +6,6 @@ export declare const STORAGE_KEYS: {
6
6
  SELECTED_DATA_STREAM: string;
7
7
  SELECTED_DATA_STREAM_WITH_PROXY: (proxyId: string) => string;
8
8
  OVERVIEW_FILTERS: string;
9
- DARK_MODE: string;
10
9
  };
11
10
  export declare const FORM_ALERTS: {
12
11
  REQUIRED_FIELDS: string;
package/lib/constants.js CHANGED
@@ -1 +1 @@
1
- export{fd as ACCEPT_RECOMMENDATION_DESCRIPTION,c0 as ACTION_CATEGORIES,bt as ACTION_OPTIONS,lD as ACTION_TYPE_TO_CATEGORY,lE as ALL_LANGUAGES_WILDCARD,lF as ALL_SOURCES,f8 as APPLY_VIA_GITOPS_DESCRIPTION,fa as APPLY_VIA_UI_DESCRIPTION,fe as BTN_ACCEPT,dc as BTN_ADD_CONDITION,dX as BTN_ADD_IDENTITY_DIMENSION,lG as BTN_ADD_OVERRIDE,j0 as BTN_ADD_OVERRIDE_POLICY,dp as BTN_ADD_SELECTION,ft as BTN_CANCEL,fA as BTN_CONTINUE_EDITING,jG as BTN_CREATE_FIRST_RULE,cY as BTN_CREATE_GUARDRAIL,eb as BTN_CREATE_OVERRIDE_POLICY,f1 as BTN_CREATE_RULE,cV as BTN_DELETE_GUARDRAIL,lH as BTN_DELETE_OVERRIDE,dd as BTN_DELETE_POLICY,fw as BTN_DELETE_RULE,cW as BTN_DISCARD_CHANGES,ff as BTN_DISMISS,fn as BTN_DOCS,a9 as BTN_EDIT_AUTO_RULE,fv as BTN_EDIT_RULE,d$ as BTN_KEEP_TRANSACTIONS,d_ as BTN_RESET_TRANSACTIONS,fo as BTN_RESTORE,fK as BTN_SAVE,cX as BTN_SAVE_CHANGES,fu as BTN_SAVE_RULE,dZ as BTN_SAVE_SETTINGS,l as BUTTON_TEXTS,fx as CATEGORY_DESCRIPTIONS,aY as CATEGORY_LABELS,fz as CATEGORY_TITLES,bU as CLASS_LABELS,da as CONDITION_TYPE_OPTIONS,lI as CREATE_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,lJ as CREATE_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,lK as CREATE_NOISY_AUTO_RULE_DRAWER_TITLE,bh as DEFAULT_CLUSTER_ID,ek as DEFAULT_CLUSTER_NAME,jB as DEFAULT_DATA_STREAM_NAME,bV as DEFAULT_IDENTITY_DIMENSIONS,ct as DESC_ADOPT_ENFORCE,cv as DESC_ADOPT_SUGGEST,iU as DESC_ANOMALY_DETECTION_POLICIES,cF as DESC_CALLEES,cH as DESC_CALLEES_EXTRA,cy as DESC_CALLERS,cB as DESC_CALLERS_EXTRA,ea as DESC_CHOOSE_DETECTION_OVERRIDE_SCOPE,dg as DESC_CHOOSE_LEARNING_OVERRIDE_SCOPE,iQ as DESC_COMING_SOON,ao as DESC_DURATION,cL as DESC_EGRESS,cO as DESC_EGRESS_EXTRA,lL as DESC_ERRORS,e0 as DESC_IDENTITY_CHANGED,iW as DESC_LEARNING_POLICIES,cD as DESC_NO_CALLEES,cw as DESC_NO_CALLERS,j4 as DESC_NO_DEFAULT_DETECTION_POLICY,iX as DESC_NO_DEFAULT_LEARNING_POLICY,j5 as DESC_NO_DETECTION_OVERRIDES,cJ as DESC_NO_EGRESS,ja as DESC_NO_GUARDRAILS,i_ as DESC_NO_LEARNING_OVERRIDES,cQ as DESC_NO_TRANSACTIONS,ar as DESC_OPERATION,iV as DESC_PANEL_GUARDRAILS,lM as DESC_PERCENTAGE_HIGHLY_RELEVANT,cj as DESC_PERCENTAGE_NOISY,aZ as DESC_RULE_TYPE,e3 as DESC_SIGNAL_WEIGHTS_LEGEND,Z as DESC_SOURCE_SCOPE,cS as DESC_TRANSACTIONS,eg as DESTINATION_CATEGORIES,jn as DISPLAY_LANGUAGES,m as DISPLAY_TITLES,c8 as DOCS_BASE_URL,by as DestinationCategoryTypes,fG as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_SUBTITLE,fH as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,fE as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_SUBTITLE,fF as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,fI as EDIT_NOISY_AUTO_RULE_DRAWER_SUBTITLE,fJ as EDIT_NOISY_AUTO_RULE_DRAWER_TITLE,fy as EDIT_TITLES,fr as EMPTY_SUBTITLE,fs as EMPTY_TITLE,aF as EMPTY_VALUE,bl as ERROR_APPLY_RECOMMENDATION,c5 as EXTRACTION_FORMAT_COPY,c3 as EXTRACT_ATTRIBUTE_FORM,jJ as FILTER_TYPE_ALL,b8 as FORM_ALERTS,fb as GITOPS_OVERRIDE_WARNING,dQ as HELPER_AUTO_TRANSACTION_GUARDRAIL,dN as HELPER_FLUSH_INTERVAL,dT as HELPER_IDENTITY_DIMENSIONS,du as HELPER_MAX_EXAMPLE_TRACES,dJ as HELPER_MAX_MEMBERS_PER_BASELINE,dG as HELPER_MAX_TRANSACTIONS_IN_MEMORY,dx as HELPER_MIN_SAMPLING_INTERVAL,dC as HELPER_SAMPLE_TRACE_RETENTION,dM as HINT_FLUSH_INTERVAL,dY as HINT_IDENTITY_DIMENSIONS,dB as HINT_SAMPLE_TRACE_RETENTION,fg as INSTALLATION_METHOD_DESCRIPTION,bX as INSTRUMENTATION_RULE_OPTIONS,f7 as LABEL_APPLY_VIA_GITOPS,f9 as LABEL_APPLY_VIA_UI,j9 as LABEL_AUTO,dR as LABEL_AUTO_TRANSACTION_GUARDRAIL,e4 as LABEL_BASE_WEIGHT,fl as LABEL_BENEFITS,dj as LABEL_CHOOSE_OVERRIDE_TYPE,d7 as LABEL_COMBINE,iR as LABEL_COMING_SOON,lN as LABEL_CONDITION_MIN_DURATION,lO as LABEL_CONDITION_MIN_OBSERVATIONS,lP as LABEL_CONDITION_STABLE_DURATION,lQ as LABEL_CONDITION_STABLE_OBSERVATIONS,fm as LABEL_CONSIDERATIONS,d6 as LABEL_CURRENTLY,e9 as LABEL_CUSTOMIZE_SIGNAL_WEIGHTS,ap as LABEL_CUSTOM_DURATION,cn as LABEL_CUSTOM_PERCENTAGE,cm as LABEL_DISABLED,f0 as LABEL_DISABLED_RULE,aP as LABEL_DROP_ALL,cg as LABEL_DROP_AT_MOST,cl as LABEL_ENABLED,fc as LABEL_ENABLE_RECOMMENDATION,j7 as LABEL_ENFORCE,de as LABEL_FALLBACK_NOTE,dO as LABEL_FLUSH_INTERVAL,d4 as LABEL_GLOBAL,ax as LABEL_HTTP_ROUTE,az as LABEL_HTTP_ROUTE_PREFIX,dU as LABEL_IDENTITY_EMPTY,dV as LABEL_IDENTITY_ENABLED,aC as LABEL_KAFKA_TOPIC,aQ as LABEL_KEEP_ALL,aM as LABEL_KEEP_AT_LEAST,aN as LABEL_KEEP_AT_MOST,aL as LABEL_KEEP_PERCENTAGE,an as LABEL_KEEP_TRACES_DURATION,al as LABEL_KEEP_TRACES_ERRORS,dv as LABEL_MAX_EXAMPLE_TRACES,dK as LABEL_MAX_MEMBERS_PER_BASELINE,dH as LABEL_MAX_TRANSACTIONS_IN_MEMORY,aB as LABEL_METHOD,d9 as LABEL_MIN_MATCHES,dy as LABEL_MIN_SAMPLING_INTERVAL,lR as LABEL_MODE_ALL,lS as LABEL_MODE_ALL_AND,lT as LABEL_MODE_ANY,lU as LABEL_MODE_ANY_OR,bQ as LABEL_MODE_K_OF,lV as LABEL_MODE_K_OF_N,e7 as LABEL_NAME,cq as LABEL_NAMESPACE,aU as LABEL_NOTE,aa as LABEL_NO_PREVIEW,aE as LABEL_OPERATION_TYPE,d2 as LABEL_OVERRIDE_TYPE_SERVICE,d3 as LABEL_OVERRIDE_TYPE_TRANSACTION,db as LABEL_PROMOTES_WHEN,bG as LABEL_RISK_LEVEL_CRITICAL,bF as LABEL_RISK_LEVEL_HIGH,bD as LABEL_RISK_LEVEL_LOW,bE as LABEL_RISK_LEVEL_MEDIUM,e6 as LABEL_RISK_POINTS,lW as LABEL_RULE_DISABLED,lX as LABEL_RULE_ENABLED,aS as LABEL_RULE_NAME,aT as LABEL_RULE_TYPE,aO as LABEL_SAMPLE,dD as LABEL_SAMPLE_TRACE_RETENTION,jd as LABEL_SELECT_A_GUARDRAIL,j2 as LABEL_SELECT_A_POLICY,dh as LABEL_SELECT_DEVIATION_CLASS,dk as LABEL_SELECT_SERVICE,dl as LABEL_SELECT_TRANSACTION,at as LABEL_SERVER_ADDRESS,cr as LABEL_SERVICE,j8 as LABEL_SUGGEST,dq as LABEL_SYSTEM_UNAVAILABLE,aw as LABEL_TEMPLATED_PATH,ay as LABEL_TEMPLATED_PATH_PREFIX,e8 as LABEL_TRIGGER_RISK_LEVEL,d0 as LABEL_UNIT_DAYS,c$ as LABEL_UNIT_HOURS,c_ as LABEL_UNIT_MINUTES,fi as LABEL_VIA_GITOPS,fh as LABEL_VIA_UI,eR as LANGUAGE_OPTIONS,bW as MAX_ENABLED_IDENTITY_DIMENSIONS,d5 as MODE_BADGE_LABELS,d1 as MODE_OPTIONS,b0 as MONITORS_OPTIONS,H as NOTE_ENTIRE_CLUSTER,dr as NOTE_EVIDENCE_SAMPLES,O as NOTE_SOURCE_SCOPE_LOGIC,fj as NOT_APPLICABLE_SUMMARY,lY as OPENTELEMETRY_EBPF_DISTRO_OPTION,aH as OPERATION_ALL,aG as OPERATION_HTTP_CLIENT,aD as OPERATION_HTTP_SERVER,aI as OPERATION_KAFKA_CONSUMER,aJ as OPERATION_KAFKA_PRODUCER,bN as ORIGIN_AUTO_TRANSACTION_GUARDRAIL,eQ as OTEL_DISTRO_NAME_OPTIONS,aK as PERCENTAGE_SECTION_DESCRIPTIONS,cN as PLACEHOLDER_EGRESS,dW as PLACEHOLDER_IDENTITY_KEY,aW as PLACEHOLDER_NOTE,av as PLACEHOLDER_ROUTE,aV as PLACEHOLDER_RULE_NAME,a0 as PLACEHOLDER_SEARCH_SOURCE,di as PLACEHOLDER_SELECT_DEVIATION_CLASS,dm as PLACEHOLDER_SELECT_SERVICE,dn as PLACEHOLDER_SELECT_TRANSACTION,as as PLACEHOLDER_SERVER_ADDRESS,cA as PLACEHOLDER_SERVICE_NAME,eC as PROCESS_ATTRIBUTE_NAMES,fp as RECOMMENDATIONS_DRAWER_SUBTITLE,fq as RECOMMENDATIONS_DRAWER_TITLE,c as REGEX_TESTER_DRAWER,bK as RULE_KEY_CALLEES,bJ as RULE_KEY_CALLERS,bL as RULE_KEY_EGRESS,bM as RULE_KEY_TRANSACTIONS,ck as SAMPLING_AUTO_RULE_TITLE,jN as SAMPLING_BTN_CREATE_RULE,jL as SAMPLING_BTN_DOCS,jM as SAMPLING_BTN_REFRESH,ci as SAMPLING_COST_REDUCTION_AUTO_RULE_TITLE,fB as SAMPLING_DEFAULT_CONFIRM_DESCRIPTION,fD as SAMPLING_DEFAULT_CONFIRM_PREVIEW_LABEL,fC as SAMPLING_DEFAULT_CONFIRM_TITLE,jQ as SAMPLING_DELETE_MODAL_APPROVE,jR as SAMPLING_DELETE_MODAL_CANCEL,jS as SAMPLING_DELETE_MODAL_DESCRIPTION,jT as SAMPLING_DELETE_MODAL_TITLE,fL as SAMPLING_DRAWER_WIDTH,jK as SAMPLING_DUPLICATE_RULE_WARNING,cf as SAMPLING_HIGHLY_RELEVANT_AUTO_RULE_TITLE,i5 as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_1,i6 as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_2,i7 as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_3,i8 as SAMPLING_ONBOARDING_ADVANCED_LEFT_TITLE,i9 as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_1,ia as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_2,ib as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_3,ic as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_4,id as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_5,ie as SAMPLING_ONBOARDING_ADVANCED_RIGHT_TITLE,ih as SAMPLING_ONBOARDING_ADVANCED_SUBTITLE,ig as SAMPLING_ONBOARDING_ADVANCED_TITLE,iz as SAMPLING_ONBOARDING_AMBIENT_LABEL,hD as SAMPLING_ONBOARDING_BTN_GO_TO,ho as SAMPLING_ONBOARDING_BTN_NEXT,i4 as SAMPLING_ONBOARDING_BTN_READ_MORE,hO as SAMPLING_ONBOARDING_BTN_SKIP,hP as SAMPLING_ONBOARDING_BTN_START,ii as SAMPLING_ONBOARDING_COMMON_BANNER,iy as SAMPLING_ONBOARDING_COMMON_RULES_SECTION,il as SAMPLING_ONBOARDING_DROP_DESCRIPTION,ik as SAMPLING_ONBOARDING_DROP_SUBTITLE,ij as SAMPLING_ONBOARDING_DROP_TITLE,ip as SAMPLING_ONBOARDING_ERROR_PRESET_NAME,io as SAMPLING_ONBOARDING_ERROR_PRESET_TOGGLE_LABEL,is as SAMPLING_ONBOARDING_KEEP_DESCRIPTION,ir as SAMPLING_ONBOARDING_KEEP_SUBTITLE,iq as SAMPLING_ONBOARDING_KEEP_TITLE,it as SAMPLING_ONBOARDING_KEEP_USE_CASE_1,iu as SAMPLING_ONBOARDING_KEEP_USE_CASE_2,iv as SAMPLING_ONBOARDING_KEEP_USE_CASE_3,iw as SAMPLING_ONBOARDING_KEEP_USE_CASE_4,ix as SAMPLING_ONBOARDING_KEEP_USE_CASE_5,hv as SAMPLING_ONBOARDING_NOISY_BANNER,hr as SAMPLING_ONBOARDING_NOISY_DESCRIPTION,hu as SAMPLING_ONBOARDING_NOISY_PRESET_NAME,hs as SAMPLING_ONBOARDING_NOISY_PRESET_SECTION,ht as SAMPLING_ONBOARDING_NOISY_PRESET_TOGGLE_LABEL,hq as SAMPLING_ONBOARDING_NOISY_SUBTITLE,hp as SAMPLING_ONBOARDING_NOISY_TITLE,im as SAMPLING_ONBOARDING_PRESET_RULES_SECTION,hn as SAMPLING_ONBOARDING_RECOMMENDED_BADGE,i1 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_BADGE,i2 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_DESC,i3 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_NAME,h_ as SAMPLING_ONBOARDING_STRATEGY_DROP_BADGE,hY as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_1,hZ as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_2,h$ as SAMPLING_ONBOARDING_STRATEGY_DROP_DESC,i0 as SAMPLING_ONBOARDING_STRATEGY_DROP_NAME,hV as SAMPLING_ONBOARDING_STRATEGY_KEEP_BADGE,hT as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_1,hU as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_2,hW as SAMPLING_ONBOARDING_STRATEGY_KEEP_DESC,hX as SAMPLING_ONBOARDING_STRATEGY_KEEP_NAME,hS as SAMPLING_ONBOARDING_STRATEGY_KEEP_WARNING,hR as SAMPLING_ONBOARDING_STRATEGY_SUBTITLE,hQ as SAMPLING_ONBOARDING_STRATEGY_TITLE,hA as SAMPLING_ONBOARDING_SUCCESS_BULLET_1,hB as SAMPLING_ONBOARDING_SUCCESS_BULLET_2,hC as SAMPLING_ONBOARDING_SUCCESS_BULLET_3,hz as SAMPLING_ONBOARDING_SUCCESS_INTRO,hy as SAMPLING_ONBOARDING_SUCCESS_SUBTITLE,hx as SAMPLING_ONBOARDING_SUCCESS_TITLE,hN as SAMPLING_ONBOARDING_WELCOME_BANNER,hG as SAMPLING_ONBOARDING_WELCOME_INTRO,hH as SAMPLING_ONBOARDING_WELCOME_STAGE_1_DESC,hI as SAMPLING_ONBOARDING_WELCOME_STAGE_1_TITLE,hJ as SAMPLING_ONBOARDING_WELCOME_STAGE_2_DESC,hK as SAMPLING_ONBOARDING_WELCOME_STAGE_2_TITLE,hL as SAMPLING_ONBOARDING_WELCOME_STAGE_3_DESC,hM as SAMPLING_ONBOARDING_WELCOME_STAGE_3_TITLE,hF as SAMPLING_ONBOARDING_WELCOME_SUBTITLE,hE as SAMPLING_ONBOARDING_WELCOME_TITLE,jO as SAMPLING_PAGE_DESCRIPTION,jP as SAMPLING_PAGE_TITLE,a3 as SCOPE_AND_LABEL,a2 as SCOPE_GROUP_ANY_OF_HINT,M as SCOPE_GROUP_LANGUAGES_TITLE,L as SCOPE_GROUP_NAMESPACES_TITLE,J as SCOPE_GROUP_SOURCES_TITLE,lZ as SECTION_APPLIED,l_ as SECTION_DISMISSED,am as SECTION_DURATION,ak as SECTION_ERRORS,ch as SECTION_KEEP_PERCENTAGE,l$ as SECTION_NOT_APPLICABLE,aq as SECTION_OPERATION,m0 as SECTION_RECOMMENDED,a_ as SECTION_SAMPLING_PREVIEW,a4 as SECTION_SOURCE_SCOPE,fk as SECTION_TITLES,jm as STORAGE_KEYS,bm as SUCCESS_APPLIED,bn as SUCCESS_DISMISSED,bo as SUCCESS_RESTORED,cs as TITLE_ADOPT_ENFORCE,cu as TITLE_ADOPT_SUGGEST,j6 as TITLE_ANOMALY_DETECTION_POLICIES,cG as TITLE_CALLEES,cI as TITLE_CALLEES_EXTRA,cz as TITLE_CALLERS,cC as TITLE_CALLERS_EXTRA,df as TITLE_CHOOSE_OVERRIDE_SCOPE,jc as TITLE_CREATED_GUARDRAILS,e5 as TITLE_DANGEROUS_SUBCASES,dL as TITLE_DATABASE_WRITEBACK,iZ as TITLE_DEFAULT_POLICY,co as TITLE_EDIT_GUARDRAIL,cM as TITLE_EGRESS,cP as TITLE_EGRESS_EXTRA,je as TITLE_GUARDRAILS,e1 as TITLE_IDENTITY_CHANGED,cp as TITLE_INSPECT_SERVICE,ds as TITLE_LEARNING_EXAMPLES,j3 as TITLE_LEARNING_POLICIES,dE as TITLE_MEMORY_LIMITS,cE as TITLE_NO_CALLEES,cx as TITLE_NO_CALLERS,iY as TITLE_NO_DEFAULT_POLICY,cK as TITLE_NO_EGRESS,jb as TITLE_NO_GUARDRAILS,i$ as TITLE_NO_OVERRIDES,jF as TITLE_NO_RESULTS,jH as TITLE_NO_RULES,cR as TITLE_NO_TRANSACTIONS,j1 as TITLE_OVERRIDES,dz as TITLE_RETENTION,cT as TITLE_TRANSACTIONS,dP as TITLE_TRANSACTION_GUARDRAILS,dS as TITLE_TRANSACTION_IDENTITY,m1 as TOKEN_ABOUT_TO_EXPIRE,aX as TOOLTIP_NOTE,dA as UNIT_DAYS,dI as UNIT_MEMBERS,dw as UNIT_SECONDS,dt as UNIT_TRACES,dF as UNIT_TRANSACTIONS,U as UNKNOWN_SOURCE_LABEL,aR as UNNAMED_RULE,he as URL_TEMPLATIZATION_ACTION_FIELD_LABEL,m2 as URL_TEMPLATIZATION_ACTION_NAME_LABEL,kp as URL_TEMPLATIZATION_ACTION_SUMMARY,m3 as URL_TEMPLATIZATION_ADD_EXISTING_GROUP,m4 as URL_TEMPLATIZATION_ADD_NEW_GROUP,m5 as URL_TEMPLATIZATION_ADD_TEMPLATE_TO_SCOPE,f$ as URL_TEMPLATIZATION_ADD_TO_EXISTING_ACTION,m6 as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION,m7 as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION_DESC,g6 as URL_TEMPLATIZATION_ADVANCED_DEFAULT_SUMMARY,kd as URL_TEMPLATIZATION_ADVANCED_LABEL,fP as URL_TEMPLATIZATION_ADVANCED_NEW_ACTION_SUMMARY,fQ as URL_TEMPLATIZATION_ADVANCED_SELECT_ACTION_SUMMARY,g7 as URL_TEMPLATIZATION_ADVANCED_SETTINGS,ke as URL_TEMPLATIZATION_ADVANCED_SUMMARY,gh as URL_TEMPLATIZATION_APPLIES_TO_ENTIRE_CLUSTER,gl as URL_TEMPLATIZATION_APPLIES_TO_LANGUAGES,gi as URL_TEMPLATIZATION_APPLIES_TO_MIXED_SCOPE,gk as URL_TEMPLATIZATION_APPLIES_TO_NAMESPACES,gj as URL_TEMPLATIZATION_APPLIES_TO_SOURCES,kb as URL_TEMPLATIZATION_AUTO_CARD_ACTIVE_BADGE,m8 as URL_TEMPLATIZATION_AUTO_CARD_BTN_ADD_DISABLED,m9 as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_EMPTY,ma as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_SECTION_TITLE,mb as URL_TEMPLATIZATION_AUTO_CARD_HINT,mc as URL_TEMPLATIZATION_AUTO_CARD_STAT_DISABLED,md as URL_TEMPLATIZATION_AUTO_CARD_STAT_NONE,me as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE,mf as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE_VALUE,mg as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES,mh as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES_ALL,kc as URL_TEMPLATIZATION_AUTO_CARD_SUBTITLE,ka as URL_TEMPLATIZATION_AUTO_CARD_TITLE,gW as URL_TEMPLATIZATION_BADGE_ADVANCED,gg as URL_TEMPLATIZATION_BADGE_MANAGED_EXTERNALLY,gf as URL_TEMPLATIZATION_BADGE_MANAGED_IN_UI,mi as URL_TEMPLATIZATION_BADGE_UI,j_ as URL_TEMPLATIZATION_BTN_ADD_DISABLED_SCOPE,gH as URL_TEMPLATIZATION_BTN_ADD_RULE,k4 as URL_TEMPLATIZATION_BTN_ADD_SKIP_POLICY_SCOPE,mj as URL_TEMPLATIZATION_BTN_ADD_TEMPLATE,gr as URL_TEMPLATIZATION_BTN_BACK,gu as URL_TEMPLATIZATION_BTN_CANCEL,gs as URL_TEMPLATIZATION_BTN_CANCEL_WITHOUT_SAVING,h4 as URL_TEMPLATIZATION_BTN_CLOSE,h1 as URL_TEMPLATIZATION_BTN_CONFIRM_DISABLE_SCOPE,kE as URL_TEMPLATIZATION_BTN_CREATE,mk as URL_TEMPLATIZATION_BTN_CREATE_GROUP,kq as URL_TEMPLATIZATION_BTN_CREATE_TEMPLATE_GROUP,k1 as URL_TEMPLATIZATION_BTN_DELETE_DISABLED_SCOPE,gq as URL_TEMPLATIZATION_BTN_DELETE_SCOPE,k7 as URL_TEMPLATIZATION_BTN_DELETE_SKIP_POLICY,kD as URL_TEMPLATIZATION_BTN_DOCS,h5 as URL_TEMPLATIZATION_BTN_EDIT,hf as URL_TEMPLATIZATION_BTN_EDIT_GROUP,ml as URL_TEMPLATIZATION_BTN_ENABLE_DEFAULT,gv as URL_TEMPLATIZATION_BTN_NEXT,gt as URL_TEMPLATIZATION_BTN_SAVE,mm as URL_TEMPLATIZATION_BTN_TEST_URL,mn as URL_TEMPLATIZATION_CHOOSE_DESTINATION,mo as URL_TEMPLATIZATION_CHOOSE_DESTINATION_DESC,h2 as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_DESCRIPTION,h3 as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_TARGET,mp as URL_TEMPLATIZATION_CREATE_GROUP_FOR_SCOPE,fN as URL_TEMPLATIZATION_CREATE_NEW_ACTION,mq as URL_TEMPLATIZATION_CREATE_NEW_ACTION_DESC,fO as URL_TEMPLATIZATION_CREATE_NEW_ACTION_OPTION_ID,g3 as URL_TEMPLATIZATION_CREATE_SEPARATE_ACTION,g2 as URL_TEMPLATIZATION_CREATE_SEPARATE_ACTION_DESC,gm as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE,gp as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE_TO_ACTION,go as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE,gn as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE_ADD_TEMPLATES,mr as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE_NEW_SCOPE,ms as URL_TEMPLATIZATION_CUSTOM_EMPTY_SUBTITLE,mt as URL_TEMPLATIZATION_CUSTOM_EMPTY_TITLE,mu as URL_TEMPLATIZATION_CUSTOM_SECTION_SUBTITLE,fM as URL_TEMPLATIZATION_DEFAULT_ACTION_NAME,mv as URL_TEMPLATIZATION_DEFAULT_ACTION_OPTION_ID,mw as URL_TEMPLATIZATION_DEFAULT_CONFIGURED_PLACEHOLDER,mx as URL_TEMPLATIZATION_DEFAULT_DISABLED_SCOPES_TITLE,my as URL_TEMPLATIZATION_DEFAULT_EMPTY_SUBTITLE,mz as URL_TEMPLATIZATION_DEFAULT_EMPTY_TITLE,gL as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_SUBTITLE,gP as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_TITLE,mA as URL_TEMPLATIZATION_DEFAULT_SECTION_SUBTITLE,mB as URL_TEMPLATIZATION_DEFAULT_SETTINGS,gS as URL_TEMPLATIZATION_DEFAULT_STATUS_DISABLED,mC as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED,mD as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED_GLOBALLY,mE as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_DISABLED,mF as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_ENABLED_GLOBALLY,mG as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_UNSET,mH as URL_TEMPLATIZATION_DEFAULT_STATUS_UNSET,k2 as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_DESCRIPTION,k3 as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_TARGET,gA as URL_TEMPLATIZATION_DELETE_SCOPE_TARGET,k8 as URL_TEMPLATIZATION_DELETE_SKIP_POLICY_DESCRIPTION,k9 as URL_TEMPLATIZATION_DELETE_SKIP_POLICY_TARGET,hd as URL_TEMPLATIZATION_DESC_ACTION,gQ as URL_TEMPLATIZATION_DESC_DEFAULT_TEMPLATIZATION,gT as URL_TEMPLATIZATION_DESC_DISABLE_SCOPE_PARAGRAPHS,mI as URL_TEMPLATIZATION_DESC_SKIP_POLICY,gY as URL_TEMPLATIZATION_DESC_SKIP_POLICY_PARAGRAPHS,fX as URL_TEMPLATIZATION_DESC_SOURCE_SCOPE,h7 as URL_TEMPLATIZATION_DESC_TEMPLATE,mJ as URL_TEMPLATIZATION_DESTINATION_CLUSTER_HINT,fV as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER,fU as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_DESC,mK as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_TOOLTIP,mL as URL_TEMPLATIZATION_DESTINATION_GROUP_HINT,fW as URL_TEMPLATIZATION_DESTINATION_QUICK_START_BADGE,fS as URL_TEMPLATIZATION_DESTINATION_SPECIFIC_SCOPE_DESC,fT as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP,mM as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP_TOOLTIP,hb as URL_TEMPLATIZATION_DETAIL_DISPLAY_NAME,ha as URL_TEMPLATIZATION_DETAIL_ORIGIN,hc as URL_TEMPLATIZATION_DETAIL_RESOURCE_NAME,h9 as URL_TEMPLATIZATION_DETAIL_SCOPE_DESC,h8 as URL_TEMPLATIZATION_DETAIL_TEMPLATE,mN as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_COVERED,mO as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_OFF,mP as URL_TEMPLATIZATION_DISABLED_SCOPES_BTN_ADD,mQ as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_BEHAVIOR,mR as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_SCOPE,mS as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_STATUS,mT as URL_TEMPLATIZATION_DISABLED_SCOPES_COUNT,mU as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_SUBTITLE,mV as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_TITLE,mW as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_DISABLED,mX as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_REDUNDANT,mY as URL_TEMPLATIZATION_DISABLED_SCOPES_SUBTITLE,mZ as URL_TEMPLATIZATION_DISABLED_SCOPES_SUMMARY,j$ as URL_TEMPLATIZATION_DISABLED_SCOPES_TITLE,gM as URL_TEMPLATIZATION_DISABLE_SCOPE_DRAWER_TITLE,kC as URL_TEMPLATIZATION_DOCS_URL,gw as URL_TEMPLATIZATION_DRAWER_WIDTH,gO as URL_TEMPLATIZATION_EDIT_DEFAULT_RULE_DRAWER_TITLE,gG as URL_TEMPLATIZATION_ERROR_INVALID_STATUS_CODES,m_ as URL_TEMPLATIZATION_EXISTING_TEMPLATING_SCOPE,gJ as URL_TEMPLATIZATION_FOOTER_IMMEDIATE_EFFECT,m$ as URL_TEMPLATIZATION_FOOTER_NO_TEMPLATE_CHANGES,gI as URL_TEMPLATIZATION_FOOTER_SAVE_EFFECT,g$ as URL_TEMPLATIZATION_HELPER_STATUS_CODES,g0 as URL_TEMPLATIZATION_MATCHING_GROUP_COUNT,n0 as URL_TEMPLATIZATION_MATCHING_GROUP_LABEL,n1 as URL_TEMPLATIZATION_MATCH_FOUND,n2 as URL_TEMPLATIZATION_MATCH_FOUND_HINT,n3 as URL_TEMPLATIZATION_NEW_ACTION_HINT,g4 as URL_TEMPLATIZATION_NEW_ACTION_NAME_LABEL,g5 as URL_TEMPLATIZATION_NEW_ACTION_PLACEHOLDER,n4 as URL_TEMPLATIZATION_NEW_GROUP_DEFAULT_HINT,n5 as URL_TEMPLATIZATION_NOTE_ENTIRE_CLUSTER,gF as URL_TEMPLATIZATION_NO_MATCH,n6 as URL_TEMPLATIZATION_NO_MATCH_HELP,n7 as URL_TEMPLATIZATION_NO_MATCH_HINT,gc as URL_TEMPLATIZATION_ODIGOS_ACTION_CAPTION,kh as URL_TEMPLATIZATION_ONBOARDING_APPLIES_TO,kg as URL_TEMPLATIZATION_ONBOARDING_AUTO_DESCRIPTION,kf as URL_TEMPLATIZATION_ONBOARDING_AUTO_TITLE,ku as URL_TEMPLATIZATION_ONBOARDING_BTN_CREATE_CUSTOM,kj as URL_TEMPLATIZATION_ONBOARDING_BTN_REVIEW_ENABLE,kt as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_DESCRIPTION,ks as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_TITLE,kB as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER,ky as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER_LABEL,kA as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE,kx as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE_LABEL,kz as URL_TEMPLATIZATION_ONBOARDING_LEARN_MORE,g1 as URL_TEMPLATIZATION_ONBOARDING_RECOMMENDED_BADGE,ki as URL_TEMPLATIZATION_ONBOARDING_REVERSIBLE,kw as URL_TEMPLATIZATION_ONBOARDING_SUBTITLE,kv as URL_TEMPLATIZATION_ONBOARDING_TITLE,kF as URL_TEMPLATIZATION_PAGE_DESCRIPTION,kG as URL_TEMPLATIZATION_PAGE_TITLE,h0 as URL_TEMPLATIZATION_PLACEHOLDER_STATUS_CODES,gz as URL_TEMPLATIZATION_PLACEHOLDER_TEMPLATE,n8 as URL_TEMPLATIZATION_RESULT,f_ as URL_TEMPLATIZATION_SCOPE_ALREADY_USED,fZ as URL_TEMPLATIZATION_SCOPE_ALREADY_USED_DESC,jY as URL_TEMPLATIZATION_SCOPE_AND,gx as URL_TEMPLATIZATION_SCOPE_CLUSTER_HINT,jV as URL_TEMPLATIZATION_SCOPE_ENTIRE_CLUSTER,jW as URL_TEMPLATIZATION_SCOPE_LANGUAGE,jX as URL_TEMPLATIZATION_SCOPE_NAMESPACE,jZ as URL_TEMPLATIZATION_SCOPE_SOURCE,n9 as URL_TEMPLATIZATION_SEARCH_GROUPS_PLACEHOLDER,kk as URL_TEMPLATIZATION_SECTION_CUSTOM,na as URL_TEMPLATIZATION_SECTION_DEFAULT,gR as URL_TEMPLATIZATION_SECTION_DEFAULT_TEMPLATIZATION,hh as URL_TEMPLATIZATION_SECTION_OTHER_TEMPLATES,hg as URL_TEMPLATIZATION_SECTION_OTHER_TEMPLATES_DESC,fY as URL_TEMPLATIZATION_SECTION_SCOPE,gX as URL_TEMPLATIZATION_SECTION_SKIP_POLICY,nb as URL_TEMPLATIZATION_SECTION_SOURCE_SCOPE,gy as URL_TEMPLATIZATION_SECTION_TEMPLATES,kr as URL_TEMPLATIZATION_SECTION_TEMPLATE_GROUPS,nc as URL_TEMPLATIZATION_SELECTED_GROUP,gb as URL_TEMPLATIZATION_SELECT_ACTION,ga as URL_TEMPLATIZATION_SELECT_ACTION_DESC,nd as URL_TEMPLATIZATION_SELECT_WHERE_TO_ADD,ne as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_SUBTITLE,nf as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_TITLE,k5 as URL_TEMPLATIZATION_SKIP_POLICIES_TITLE,gK as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_SUBTITLE,gN as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_TITLE,ng as URL_TEMPLATIZATION_SKIP_POLICY_STATUS_LINE_DISABLED,gE as URL_TEMPLATIZATION_TEMPLATED_URL_PATH,nh as URL_TEMPLATIZATION_TEMPLATING_SCOPE_CAPTION,gV as URL_TEMPLATIZATION_TOGGLE_ENABLE_TEMPLATIZATION,gZ as URL_TEMPLATIZATION_TOGGLE_SKIP_NON_2XX,g_ as URL_TEMPLATIZATION_TOGGLE_SKIP_STATUS_CODES,ge as URL_TEMPLATIZATION_TOOLTIP_MANAGED_EXTERNALLY,gd as URL_TEMPLATIZATION_TOOLTIP_MANAGED_IN_UI,gC as URL_TEMPLATIZATION_TRY_A_URL,gD as URL_TEMPLATIZATION_TRY_A_URL_PLACEHOLDER,g9 as URL_TEMPLATIZATION_USE_DEFAULT_ACTION,g8 as URL_TEMPLATIZATION_USE_DEFAULT_ACTION_DESC,ni as URL_TEMPLATIZATION_VIEW_ACTION_SETTINGS,kl as URL_TEMPLATIZATION_VIEW_BY,h6 as URL_TEMPLATIZATION_VIEW_DRAWER_TITLE,km as URL_TEMPLATIZATION_VIEW_GROUPS,ko as URL_TEMPLATIZATION_VIEW_LIST,kn as URL_TEMPLATIZATION_VIEW_TREE,fR as URL_TEMPLATIZATION_WHERE_SHOULD_APPLY,ex as canAgentReportPodStartTime,k0 as formatUrlTemplatizationDefaultStatusLineEnabled,gB as formatUrlTemplatizationDeleteScopeDescription,nj as formatUrlTemplatizationSaveFooter,k6 as formatUrlTemplatizationSkipPolicyStatusLine,bH as getFireSummary,jI as getNoResultsSubTitle,eY as getSourceConditionsForPanel,ec as getSupportedActionOptions,cd as getSupportedLanguageIcon,ce as getSupportedLanguageLabel,nk as isActionSupportedOnPlatform,nl as isActionSupportedOnVersion,bS as isDurationConditionType,nm as isObservationsConditionType,ca as isRuleSourceScopeSupported,bi as mapActionTypesToOptions,bq as mapRuleTypesToOptions,cb as normalizeSupportedLanguagesForDisplay,ei as ruleTypeRequiresConfiguration,eX as shouldShowSourceConditionsPanel,nn as supportsAllLanguages,cc as toScopeSupportedLanguages}from"./chunks/ui-components-DLJJffgA.js";import"react/jsx-runtime";import"styled-components";import"./icons.js";import"zustand";import"react";import"javascript-time-ago";import"javascript-time-ago/locale/en";import"react-dom";import"prism-react-renderer";import"zustand/middleware";import"react-error-boundary";import"virtua";
1
+ export{fg as ACCEPT_RECOMMENDATION_DESCRIPTION,c0 as ACTION_CATEGORIES,bt as ACTION_OPTIONS,lH as ACTION_TYPE_TO_CATEGORY,lI as ALL_LANGUAGES_WILDCARD,lJ as ALL_SOURCES,fb as APPLY_VIA_GITOPS_DESCRIPTION,fd as APPLY_VIA_UI_DESCRIPTION,fh as BTN_ACCEPT,dc as BTN_ADD_CONDITION,d_ as BTN_ADD_IDENTITY_DIMENSION,lK as BTN_ADD_OVERRIDE,j4 as BTN_ADD_OVERRIDE_POLICY,dp as BTN_ADD_SELECTION,fw as BTN_CANCEL,fD as BTN_CONTINUE_EDITING,jK as BTN_CREATE_FIRST_RULE,cY as BTN_CREATE_GUARDRAIL,ee as BTN_CREATE_OVERRIDE_POLICY,f4 as BTN_CREATE_RULE,cV as BTN_DELETE_GUARDRAIL,lL as BTN_DELETE_OVERRIDE,dd as BTN_DELETE_POLICY,fz as BTN_DELETE_RULE,cW as BTN_DISCARD_CHANGES,fi as BTN_DISMISS,fq as BTN_DOCS,a9 as BTN_EDIT_AUTO_RULE,fy as BTN_EDIT_RULE,e2 as BTN_KEEP_TRANSACTIONS,e1 as BTN_RESET_TRANSACTIONS,fr as BTN_RESTORE,fN as BTN_SAVE,cX as BTN_SAVE_CHANGES,fx as BTN_SAVE_RULE,e0 as BTN_SAVE_SETTINGS,l as BUTTON_TEXTS,fA as CATEGORY_DESCRIPTIONS,aY as CATEGORY_LABELS,fC as CATEGORY_TITLES,bU as CLASS_LABELS,da as CONDITION_TYPE_OPTIONS,lM as CREATE_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,lN as CREATE_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,lO as CREATE_NOISY_AUTO_RULE_DRAWER_TITLE,bh as DEFAULT_CLUSTER_ID,en as DEFAULT_CLUSTER_NAME,jF as DEFAULT_DATA_STREAM_NAME,bV as DEFAULT_IDENTITY_DIMENSIONS,ct as DESC_ADOPT_ENFORCE,cv as DESC_ADOPT_SUGGEST,iY as DESC_ANOMALY_DETECTION_POLICIES,cF as DESC_CALLEES,cH as DESC_CALLEES_EXTRA,cy as DESC_CALLERS,cB as DESC_CALLERS_EXTRA,ed as DESC_CHOOSE_DETECTION_OVERRIDE_SCOPE,dg as DESC_CHOOSE_LEARNING_OVERRIDE_SCOPE,iT as DESC_COMING_SOON,ao as DESC_DURATION,cL as DESC_EGRESS,cO as DESC_EGRESS_EXTRA,lP as DESC_ERRORS,e3 as DESC_IDENTITY_CHANGED,i_ as DESC_LEARNING_POLICIES,cD as DESC_NO_CALLEES,cw as DESC_NO_CALLERS,j8 as DESC_NO_DEFAULT_DETECTION_POLICY,i$ as DESC_NO_DEFAULT_LEARNING_POLICY,j9 as DESC_NO_DETECTION_OVERRIDES,cJ as DESC_NO_EGRESS,je as DESC_NO_GUARDRAILS,j2 as DESC_NO_LEARNING_OVERRIDES,cQ as DESC_NO_TRANSACTIONS,ar as DESC_OPERATION,iZ as DESC_PANEL_GUARDRAILS,lQ as DESC_PERCENTAGE_HIGHLY_RELEVANT,cj as DESC_PERCENTAGE_NOISY,aZ as DESC_RULE_TYPE,e6 as DESC_SIGNAL_WEIGHTS_LEGEND,Z as DESC_SOURCE_SCOPE,cS as DESC_TRANSACTIONS,ej as DESTINATION_CATEGORIES,jr as DISPLAY_LANGUAGES,m as DISPLAY_TITLES,c8 as DOCS_BASE_URL,by as DestinationCategoryTypes,fJ as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_SUBTITLE,fK as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,fH as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_SUBTITLE,fI as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,fL as EDIT_NOISY_AUTO_RULE_DRAWER_SUBTITLE,fM as EDIT_NOISY_AUTO_RULE_DRAWER_TITLE,fB as EDIT_TITLES,fu as EMPTY_SUBTITLE,fv as EMPTY_TITLE,aF as EMPTY_VALUE,bl as ERROR_APPLY_RECOMMENDATION,c5 as EXTRACTION_FORMAT_COPY,c3 as EXTRACT_ATTRIBUTE_FORM,jN as FILTER_TYPE_ALL,b8 as FORM_ALERTS,fe as GITOPS_OVERRIDE_WARNING,dQ as HELPER_AUTO_TRANSACTION_GUARDRAIL,dN as HELPER_FLUSH_INTERVAL,dT as HELPER_IDENTITY_DIMENSIONS,dW as HELPER_IDENTITY_DIMENSIONS_BAD,dV as HELPER_IDENTITY_DIMENSIONS_GOOD,du as HELPER_MAX_EXAMPLE_TRACES,dJ as HELPER_MAX_MEMBERS_PER_BASELINE,dG as HELPER_MAX_TRANSACTIONS_IN_MEMORY,dx as HELPER_MIN_SAMPLING_INTERVAL,dC as HELPER_SAMPLE_TRACE_RETENTION,dM as HINT_FLUSH_INTERVAL,d$ as HINT_IDENTITY_DIMENSIONS,dB as HINT_SAMPLE_TRACE_RETENTION,fj as INSTALLATION_METHOD_DESCRIPTION,bX as INSTRUMENTATION_RULE_OPTIONS,fa as LABEL_APPLY_VIA_GITOPS,fc as LABEL_APPLY_VIA_UI,jd as LABEL_AUTO,dR as LABEL_AUTO_TRANSACTION_GUARDRAIL,e7 as LABEL_BASE_WEIGHT,fo as LABEL_BENEFITS,dj as LABEL_CHOOSE_OVERRIDE_TYPE,d7 as LABEL_COMBINE,iU as LABEL_COMING_SOON,lR as LABEL_CONDITION_MIN_DURATION,lS as LABEL_CONDITION_MIN_OBSERVATIONS,lT as LABEL_CONDITION_STABLE_DURATION,lU as LABEL_CONDITION_STABLE_OBSERVATIONS,fp as LABEL_CONSIDERATIONS,d6 as LABEL_CURRENTLY,ec as LABEL_CUSTOMIZE_SIGNAL_WEIGHTS,ap as LABEL_CUSTOM_DURATION,cn as LABEL_CUSTOM_PERCENTAGE,cm as LABEL_DISABLED,f3 as LABEL_DISABLED_RULE,aP as LABEL_DROP_ALL,cg as LABEL_DROP_AT_MOST,cl as LABEL_ENABLED,ff as LABEL_ENABLE_RECOMMENDATION,jb as LABEL_ENFORCE,de as LABEL_FALLBACK_NOTE,dO as LABEL_FLUSH_INTERVAL,d4 as LABEL_GLOBAL,ax as LABEL_HTTP_ROUTE,az as LABEL_HTTP_ROUTE_PREFIX,dX as LABEL_IDENTITY_EMPTY,dY as LABEL_IDENTITY_ENABLED,aC as LABEL_KAFKA_TOPIC,aQ as LABEL_KEEP_ALL,aM as LABEL_KEEP_AT_LEAST,aN as LABEL_KEEP_AT_MOST,aL as LABEL_KEEP_PERCENTAGE,an as LABEL_KEEP_TRACES_DURATION,al as LABEL_KEEP_TRACES_ERRORS,dv as LABEL_MAX_EXAMPLE_TRACES,dK as LABEL_MAX_MEMBERS_PER_BASELINE,dH as LABEL_MAX_TRANSACTIONS_IN_MEMORY,aB as LABEL_METHOD,d9 as LABEL_MIN_MATCHES,dy as LABEL_MIN_SAMPLING_INTERVAL,lV as LABEL_MODE_ALL,lW as LABEL_MODE_ALL_AND,lX as LABEL_MODE_ANY,lY as LABEL_MODE_ANY_OR,bQ as LABEL_MODE_K_OF,lZ as LABEL_MODE_K_OF_N,ea as LABEL_NAME,cq as LABEL_NAMESPACE,aU as LABEL_NOTE,aa as LABEL_NO_PREVIEW,aE as LABEL_OPERATION_TYPE,d2 as LABEL_OVERRIDE_TYPE_SERVICE,d3 as LABEL_OVERRIDE_TYPE_TRANSACTION,db as LABEL_PROMOTES_WHEN,bG as LABEL_RISK_LEVEL_CRITICAL,bF as LABEL_RISK_LEVEL_HIGH,bD as LABEL_RISK_LEVEL_LOW,bE as LABEL_RISK_LEVEL_MEDIUM,e9 as LABEL_RISK_POINTS,l_ as LABEL_RULE_DISABLED,l$ as LABEL_RULE_ENABLED,aS as LABEL_RULE_NAME,aT as LABEL_RULE_TYPE,aO as LABEL_SAMPLE,dD as LABEL_SAMPLE_TRACE_RETENTION,jh as LABEL_SELECT_A_GUARDRAIL,j6 as LABEL_SELECT_A_POLICY,dh as LABEL_SELECT_DEVIATION_CLASS,dk as LABEL_SELECT_SERVICE,dl as LABEL_SELECT_TRANSACTION,at as LABEL_SERVER_ADDRESS,cr as LABEL_SERVICE,jc as LABEL_SUGGEST,dq as LABEL_SYSTEM_UNAVAILABLE,aw as LABEL_TEMPLATED_PATH,ay as LABEL_TEMPLATED_PATH_PREFIX,eb as LABEL_TRIGGER_RISK_LEVEL,d0 as LABEL_UNIT_DAYS,c$ as LABEL_UNIT_HOURS,c_ as LABEL_UNIT_MINUTES,fl as LABEL_VIA_GITOPS,fk as LABEL_VIA_UI,eU as LANGUAGE_OPTIONS,bW as MAX_ENABLED_IDENTITY_DIMENSIONS,d5 as MODE_BADGE_LABELS,d1 as MODE_OPTIONS,b0 as MONITORS_OPTIONS,H as NOTE_ENTIRE_CLUSTER,dr as NOTE_EVIDENCE_SAMPLES,O as NOTE_SOURCE_SCOPE_LOGIC,fm as NOT_APPLICABLE_SUMMARY,m0 as OPENTELEMETRY_EBPF_DISTRO_OPTION,aH as OPERATION_ALL,aG as OPERATION_HTTP_CLIENT,aD as OPERATION_HTTP_SERVER,aI as OPERATION_KAFKA_CONSUMER,aJ as OPERATION_KAFKA_PRODUCER,bN as ORIGIN_AUTO_TRANSACTION_GUARDRAIL,eT as OTEL_DISTRO_NAME_OPTIONS,aK as PERCENTAGE_SECTION_DESCRIPTIONS,cN as PLACEHOLDER_EGRESS,dZ as PLACEHOLDER_IDENTITY_KEY,aW as PLACEHOLDER_NOTE,av as PLACEHOLDER_ROUTE,aV as PLACEHOLDER_RULE_NAME,a0 as PLACEHOLDER_SEARCH_SOURCE,di as PLACEHOLDER_SELECT_DEVIATION_CLASS,dm as PLACEHOLDER_SELECT_SERVICE,dn as PLACEHOLDER_SELECT_TRANSACTION,as as PLACEHOLDER_SERVER_ADDRESS,cA as PLACEHOLDER_SERVICE_NAME,eF as PROCESS_ATTRIBUTE_NAMES,fs as RECOMMENDATIONS_DRAWER_SUBTITLE,ft as RECOMMENDATIONS_DRAWER_TITLE,c as REGEX_TESTER_DRAWER,bK as RULE_KEY_CALLEES,bJ as RULE_KEY_CALLERS,bL as RULE_KEY_EGRESS,bM as RULE_KEY_TRANSACTIONS,ck as SAMPLING_AUTO_RULE_TITLE,jR as SAMPLING_BTN_CREATE_RULE,jP as SAMPLING_BTN_DOCS,jQ as SAMPLING_BTN_REFRESH,ci as SAMPLING_COST_REDUCTION_AUTO_RULE_TITLE,fE as SAMPLING_DEFAULT_CONFIRM_DESCRIPTION,fG as SAMPLING_DEFAULT_CONFIRM_PREVIEW_LABEL,fF as SAMPLING_DEFAULT_CONFIRM_TITLE,jU as SAMPLING_DELETE_MODAL_APPROVE,jV as SAMPLING_DELETE_MODAL_CANCEL,jW as SAMPLING_DELETE_MODAL_DESCRIPTION,jX as SAMPLING_DELETE_MODAL_TITLE,fO as SAMPLING_DRAWER_WIDTH,jO as SAMPLING_DUPLICATE_RULE_WARNING,cf as SAMPLING_HIGHLY_RELEVANT_AUTO_RULE_TITLE,i8 as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_1,i9 as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_2,ia as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_3,ib as SAMPLING_ONBOARDING_ADVANCED_LEFT_TITLE,ic as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_1,id as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_2,ie as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_3,ig as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_4,ih as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_5,ii as SAMPLING_ONBOARDING_ADVANCED_RIGHT_TITLE,ik as SAMPLING_ONBOARDING_ADVANCED_SUBTITLE,ij as SAMPLING_ONBOARDING_ADVANCED_TITLE,iC as SAMPLING_ONBOARDING_AMBIENT_LABEL,hG as SAMPLING_ONBOARDING_BTN_GO_TO,hr as SAMPLING_ONBOARDING_BTN_NEXT,i7 as SAMPLING_ONBOARDING_BTN_READ_MORE,hR as SAMPLING_ONBOARDING_BTN_SKIP,hS as SAMPLING_ONBOARDING_BTN_START,il as SAMPLING_ONBOARDING_COMMON_BANNER,iB as SAMPLING_ONBOARDING_COMMON_RULES_SECTION,ip as SAMPLING_ONBOARDING_DROP_DESCRIPTION,io as SAMPLING_ONBOARDING_DROP_SUBTITLE,im as SAMPLING_ONBOARDING_DROP_TITLE,is as SAMPLING_ONBOARDING_ERROR_PRESET_NAME,ir as SAMPLING_ONBOARDING_ERROR_PRESET_TOGGLE_LABEL,iv as SAMPLING_ONBOARDING_KEEP_DESCRIPTION,iu as SAMPLING_ONBOARDING_KEEP_SUBTITLE,it as SAMPLING_ONBOARDING_KEEP_TITLE,iw as SAMPLING_ONBOARDING_KEEP_USE_CASE_1,ix as SAMPLING_ONBOARDING_KEEP_USE_CASE_2,iy as SAMPLING_ONBOARDING_KEEP_USE_CASE_3,iz as SAMPLING_ONBOARDING_KEEP_USE_CASE_4,iA as SAMPLING_ONBOARDING_KEEP_USE_CASE_5,hy as SAMPLING_ONBOARDING_NOISY_BANNER,hu as SAMPLING_ONBOARDING_NOISY_DESCRIPTION,hx as SAMPLING_ONBOARDING_NOISY_PRESET_NAME,hv as SAMPLING_ONBOARDING_NOISY_PRESET_SECTION,hw as SAMPLING_ONBOARDING_NOISY_PRESET_TOGGLE_LABEL,ht as SAMPLING_ONBOARDING_NOISY_SUBTITLE,hs as SAMPLING_ONBOARDING_NOISY_TITLE,iq as SAMPLING_ONBOARDING_PRESET_RULES_SECTION,hq as SAMPLING_ONBOARDING_RECOMMENDED_BADGE,i4 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_BADGE,i5 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_DESC,i6 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_NAME,i1 as SAMPLING_ONBOARDING_STRATEGY_DROP_BADGE,h$ as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_1,i0 as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_2,i2 as SAMPLING_ONBOARDING_STRATEGY_DROP_DESC,i3 as SAMPLING_ONBOARDING_STRATEGY_DROP_NAME,hY as SAMPLING_ONBOARDING_STRATEGY_KEEP_BADGE,hW as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_1,hX as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_2,hZ as SAMPLING_ONBOARDING_STRATEGY_KEEP_DESC,h_ as SAMPLING_ONBOARDING_STRATEGY_KEEP_NAME,hV as SAMPLING_ONBOARDING_STRATEGY_KEEP_WARNING,hU as SAMPLING_ONBOARDING_STRATEGY_SUBTITLE,hT as SAMPLING_ONBOARDING_STRATEGY_TITLE,hD as SAMPLING_ONBOARDING_SUCCESS_BULLET_1,hE as SAMPLING_ONBOARDING_SUCCESS_BULLET_2,hF as SAMPLING_ONBOARDING_SUCCESS_BULLET_3,hC as SAMPLING_ONBOARDING_SUCCESS_INTRO,hB as SAMPLING_ONBOARDING_SUCCESS_SUBTITLE,hA as SAMPLING_ONBOARDING_SUCCESS_TITLE,hQ as SAMPLING_ONBOARDING_WELCOME_BANNER,hJ as SAMPLING_ONBOARDING_WELCOME_INTRO,hK as SAMPLING_ONBOARDING_WELCOME_STAGE_1_DESC,hL as SAMPLING_ONBOARDING_WELCOME_STAGE_1_TITLE,hM as SAMPLING_ONBOARDING_WELCOME_STAGE_2_DESC,hN as SAMPLING_ONBOARDING_WELCOME_STAGE_2_TITLE,hO as SAMPLING_ONBOARDING_WELCOME_STAGE_3_DESC,hP as SAMPLING_ONBOARDING_WELCOME_STAGE_3_TITLE,hI as SAMPLING_ONBOARDING_WELCOME_SUBTITLE,hH as SAMPLING_ONBOARDING_WELCOME_TITLE,jS as SAMPLING_PAGE_DESCRIPTION,jT as SAMPLING_PAGE_TITLE,a3 as SCOPE_AND_LABEL,a2 as SCOPE_GROUP_ANY_OF_HINT,M as SCOPE_GROUP_LANGUAGES_TITLE,L as SCOPE_GROUP_NAMESPACES_TITLE,J as SCOPE_GROUP_SOURCES_TITLE,m1 as SECTION_APPLIED,m2 as SECTION_DISMISSED,am as SECTION_DURATION,ak as SECTION_ERRORS,ch as SECTION_KEEP_PERCENTAGE,m3 as SECTION_NOT_APPLICABLE,aq as SECTION_OPERATION,m4 as SECTION_RECOMMENDED,a_ as SECTION_SAMPLING_PREVIEW,a4 as SECTION_SOURCE_SCOPE,fn as SECTION_TITLES,jq as STORAGE_KEYS,bm as SUCCESS_APPLIED,bn as SUCCESS_DISMISSED,bo as SUCCESS_RESTORED,cs as TITLE_ADOPT_ENFORCE,cu as TITLE_ADOPT_SUGGEST,ja as TITLE_ANOMALY_DETECTION_POLICIES,cG as TITLE_CALLEES,cI as TITLE_CALLEES_EXTRA,cz as TITLE_CALLERS,cC as TITLE_CALLERS_EXTRA,df as TITLE_CHOOSE_OVERRIDE_SCOPE,jg as TITLE_CREATED_GUARDRAILS,e8 as TITLE_DANGEROUS_SUBCASES,dL as TITLE_DATABASE_WRITEBACK,j1 as TITLE_DEFAULT_POLICY,co as TITLE_EDIT_GUARDRAIL,cM as TITLE_EGRESS,cP as TITLE_EGRESS_EXTRA,ji as TITLE_GUARDRAILS,e4 as TITLE_IDENTITY_CHANGED,cp as TITLE_INSPECT_SERVICE,ds as TITLE_LEARNING_EXAMPLES,j7 as TITLE_LEARNING_POLICIES,dE as TITLE_MEMORY_LIMITS,cE as TITLE_NO_CALLEES,cx as TITLE_NO_CALLERS,j0 as TITLE_NO_DEFAULT_POLICY,cK as TITLE_NO_EGRESS,jf as TITLE_NO_GUARDRAILS,j3 as TITLE_NO_OVERRIDES,jJ as TITLE_NO_RESULTS,jL as TITLE_NO_RULES,cR as TITLE_NO_TRANSACTIONS,j5 as TITLE_OVERRIDES,dz as TITLE_RETENTION,cT as TITLE_TRANSACTIONS,dP as TITLE_TRANSACTION_GUARDRAILS,dS as TITLE_TRANSACTION_IDENTITY,m5 as TOKEN_ABOUT_TO_EXPIRE,aX as TOOLTIP_NOTE,dA as UNIT_DAYS,dI as UNIT_MEMBERS,dw as UNIT_SECONDS,dt as UNIT_TRACES,dF as UNIT_TRANSACTIONS,U as UNKNOWN_SOURCE_LABEL,aR as UNNAMED_RULE,hh as URL_TEMPLATIZATION_ACTION_FIELD_LABEL,m6 as URL_TEMPLATIZATION_ACTION_NAME_LABEL,kt as URL_TEMPLATIZATION_ACTION_SUMMARY,m7 as URL_TEMPLATIZATION_ADD_EXISTING_GROUP,m8 as URL_TEMPLATIZATION_ADD_NEW_GROUP,m9 as URL_TEMPLATIZATION_ADD_TEMPLATE_TO_SCOPE,g2 as URL_TEMPLATIZATION_ADD_TO_EXISTING_ACTION,ma as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION,mb as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION_DESC,g9 as URL_TEMPLATIZATION_ADVANCED_DEFAULT_SUMMARY,kh as URL_TEMPLATIZATION_ADVANCED_LABEL,fS as URL_TEMPLATIZATION_ADVANCED_NEW_ACTION_SUMMARY,fT as URL_TEMPLATIZATION_ADVANCED_SELECT_ACTION_SUMMARY,ga as URL_TEMPLATIZATION_ADVANCED_SETTINGS,ki as URL_TEMPLATIZATION_ADVANCED_SUMMARY,gk as URL_TEMPLATIZATION_APPLIES_TO_ENTIRE_CLUSTER,go as URL_TEMPLATIZATION_APPLIES_TO_LANGUAGES,gl as URL_TEMPLATIZATION_APPLIES_TO_MIXED_SCOPE,gn as URL_TEMPLATIZATION_APPLIES_TO_NAMESPACES,gm as URL_TEMPLATIZATION_APPLIES_TO_SOURCES,kf as URL_TEMPLATIZATION_AUTO_CARD_ACTIVE_BADGE,mc as URL_TEMPLATIZATION_AUTO_CARD_BTN_ADD_DISABLED,md as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_EMPTY,me as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_SECTION_TITLE,mf as URL_TEMPLATIZATION_AUTO_CARD_HINT,mg as URL_TEMPLATIZATION_AUTO_CARD_STAT_DISABLED,mh as URL_TEMPLATIZATION_AUTO_CARD_STAT_NONE,mi as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE,mj as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE_VALUE,mk as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES,ml as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES_ALL,kg as URL_TEMPLATIZATION_AUTO_CARD_SUBTITLE,ke as URL_TEMPLATIZATION_AUTO_CARD_TITLE,gZ as URL_TEMPLATIZATION_BADGE_ADVANCED,gj as URL_TEMPLATIZATION_BADGE_MANAGED_EXTERNALLY,gi as URL_TEMPLATIZATION_BADGE_MANAGED_IN_UI,mm as URL_TEMPLATIZATION_BADGE_UI,k2 as URL_TEMPLATIZATION_BTN_ADD_DISABLED_SCOPE,gK as URL_TEMPLATIZATION_BTN_ADD_RULE,k8 as URL_TEMPLATIZATION_BTN_ADD_SKIP_POLICY_SCOPE,mn as URL_TEMPLATIZATION_BTN_ADD_TEMPLATE,gu as URL_TEMPLATIZATION_BTN_BACK,gx as URL_TEMPLATIZATION_BTN_CANCEL,gv as URL_TEMPLATIZATION_BTN_CANCEL_WITHOUT_SAVING,h7 as URL_TEMPLATIZATION_BTN_CLOSE,h4 as URL_TEMPLATIZATION_BTN_CONFIRM_DISABLE_SCOPE,kI as URL_TEMPLATIZATION_BTN_CREATE,mo as URL_TEMPLATIZATION_BTN_CREATE_GROUP,ku as URL_TEMPLATIZATION_BTN_CREATE_TEMPLATE_GROUP,k5 as URL_TEMPLATIZATION_BTN_DELETE_DISABLED_SCOPE,gt as URL_TEMPLATIZATION_BTN_DELETE_SCOPE,kb as URL_TEMPLATIZATION_BTN_DELETE_SKIP_POLICY,kH as URL_TEMPLATIZATION_BTN_DOCS,h8 as URL_TEMPLATIZATION_BTN_EDIT,hi as URL_TEMPLATIZATION_BTN_EDIT_GROUP,mp as URL_TEMPLATIZATION_BTN_ENABLE_DEFAULT,gy as URL_TEMPLATIZATION_BTN_NEXT,gw as URL_TEMPLATIZATION_BTN_SAVE,mq as URL_TEMPLATIZATION_BTN_TEST_URL,mr as URL_TEMPLATIZATION_CHOOSE_DESTINATION,ms as URL_TEMPLATIZATION_CHOOSE_DESTINATION_DESC,h5 as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_DESCRIPTION,h6 as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_TARGET,mt as URL_TEMPLATIZATION_CREATE_GROUP_FOR_SCOPE,fQ as URL_TEMPLATIZATION_CREATE_NEW_ACTION,mu as URL_TEMPLATIZATION_CREATE_NEW_ACTION_DESC,fR as URL_TEMPLATIZATION_CREATE_NEW_ACTION_OPTION_ID,g6 as URL_TEMPLATIZATION_CREATE_SEPARATE_ACTION,g5 as URL_TEMPLATIZATION_CREATE_SEPARATE_ACTION_DESC,gp as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE,gs as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE_TO_ACTION,gr as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE,gq as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE_ADD_TEMPLATES,mv as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE_NEW_SCOPE,mw as URL_TEMPLATIZATION_CUSTOM_EMPTY_SUBTITLE,mx as URL_TEMPLATIZATION_CUSTOM_EMPTY_TITLE,my as URL_TEMPLATIZATION_CUSTOM_SECTION_SUBTITLE,fP as URL_TEMPLATIZATION_DEFAULT_ACTION_NAME,mz as URL_TEMPLATIZATION_DEFAULT_ACTION_OPTION_ID,mA as URL_TEMPLATIZATION_DEFAULT_CONFIGURED_PLACEHOLDER,mB as URL_TEMPLATIZATION_DEFAULT_DISABLED_SCOPES_TITLE,mC as URL_TEMPLATIZATION_DEFAULT_EMPTY_SUBTITLE,mD as URL_TEMPLATIZATION_DEFAULT_EMPTY_TITLE,gO as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_SUBTITLE,gS as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_TITLE,mE as URL_TEMPLATIZATION_DEFAULT_SECTION_SUBTITLE,mF as URL_TEMPLATIZATION_DEFAULT_SETTINGS,gV as URL_TEMPLATIZATION_DEFAULT_STATUS_DISABLED,mG as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED,mH as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED_GLOBALLY,mI as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_DISABLED,mJ as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_ENABLED_GLOBALLY,mK as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_UNSET,mL as URL_TEMPLATIZATION_DEFAULT_STATUS_UNSET,k6 as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_DESCRIPTION,k7 as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_TARGET,gD as URL_TEMPLATIZATION_DELETE_SCOPE_TARGET,kc as URL_TEMPLATIZATION_DELETE_SKIP_POLICY_DESCRIPTION,kd as URL_TEMPLATIZATION_DELETE_SKIP_POLICY_TARGET,hg as URL_TEMPLATIZATION_DESC_ACTION,gT as URL_TEMPLATIZATION_DESC_DEFAULT_TEMPLATIZATION,gW as URL_TEMPLATIZATION_DESC_DISABLE_SCOPE_PARAGRAPHS,mM as URL_TEMPLATIZATION_DESC_SKIP_POLICY,g$ as URL_TEMPLATIZATION_DESC_SKIP_POLICY_PARAGRAPHS,f_ as URL_TEMPLATIZATION_DESC_SOURCE_SCOPE,ha as URL_TEMPLATIZATION_DESC_TEMPLATE,mN as URL_TEMPLATIZATION_DESTINATION_CLUSTER_HINT,fY as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER,fX as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_DESC,mO as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_TOOLTIP,mP as URL_TEMPLATIZATION_DESTINATION_GROUP_HINT,fZ as URL_TEMPLATIZATION_DESTINATION_QUICK_START_BADGE,fV as URL_TEMPLATIZATION_DESTINATION_SPECIFIC_SCOPE_DESC,fW as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP,mQ as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP_TOOLTIP,he as URL_TEMPLATIZATION_DETAIL_DISPLAY_NAME,hd as URL_TEMPLATIZATION_DETAIL_ORIGIN,hf as URL_TEMPLATIZATION_DETAIL_RESOURCE_NAME,hc as URL_TEMPLATIZATION_DETAIL_SCOPE_DESC,hb as URL_TEMPLATIZATION_DETAIL_TEMPLATE,mR as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_COVERED,mS as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_OFF,mT as URL_TEMPLATIZATION_DISABLED_SCOPES_BTN_ADD,mU as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_BEHAVIOR,mV as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_SCOPE,mW as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_STATUS,mX as URL_TEMPLATIZATION_DISABLED_SCOPES_COUNT,mY as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_SUBTITLE,mZ as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_TITLE,m_ as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_DISABLED,m$ as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_REDUNDANT,n0 as URL_TEMPLATIZATION_DISABLED_SCOPES_SUBTITLE,n1 as URL_TEMPLATIZATION_DISABLED_SCOPES_SUMMARY,k3 as URL_TEMPLATIZATION_DISABLED_SCOPES_TITLE,gP as URL_TEMPLATIZATION_DISABLE_SCOPE_DRAWER_TITLE,kG as URL_TEMPLATIZATION_DOCS_URL,gz as URL_TEMPLATIZATION_DRAWER_WIDTH,gR as URL_TEMPLATIZATION_EDIT_DEFAULT_RULE_DRAWER_TITLE,gJ as URL_TEMPLATIZATION_ERROR_INVALID_STATUS_CODES,n2 as URL_TEMPLATIZATION_EXISTING_TEMPLATING_SCOPE,gM as URL_TEMPLATIZATION_FOOTER_IMMEDIATE_EFFECT,n3 as URL_TEMPLATIZATION_FOOTER_NO_TEMPLATE_CHANGES,gL as URL_TEMPLATIZATION_FOOTER_SAVE_EFFECT,h2 as URL_TEMPLATIZATION_HELPER_STATUS_CODES,g3 as URL_TEMPLATIZATION_MATCHING_GROUP_COUNT,n4 as URL_TEMPLATIZATION_MATCHING_GROUP_LABEL,n5 as URL_TEMPLATIZATION_MATCH_FOUND,n6 as URL_TEMPLATIZATION_MATCH_FOUND_HINT,n7 as URL_TEMPLATIZATION_NEW_ACTION_HINT,g7 as URL_TEMPLATIZATION_NEW_ACTION_NAME_LABEL,g8 as URL_TEMPLATIZATION_NEW_ACTION_PLACEHOLDER,n8 as URL_TEMPLATIZATION_NEW_GROUP_DEFAULT_HINT,n9 as URL_TEMPLATIZATION_NOTE_ENTIRE_CLUSTER,gI as URL_TEMPLATIZATION_NO_MATCH,na as URL_TEMPLATIZATION_NO_MATCH_HELP,nb as URL_TEMPLATIZATION_NO_MATCH_HINT,gf as URL_TEMPLATIZATION_ODIGOS_ACTION_CAPTION,kl as URL_TEMPLATIZATION_ONBOARDING_APPLIES_TO,kk as URL_TEMPLATIZATION_ONBOARDING_AUTO_DESCRIPTION,kj as URL_TEMPLATIZATION_ONBOARDING_AUTO_TITLE,ky as URL_TEMPLATIZATION_ONBOARDING_BTN_CREATE_CUSTOM,kn as URL_TEMPLATIZATION_ONBOARDING_BTN_REVIEW_ENABLE,kx as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_DESCRIPTION,kw as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_TITLE,kF as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER,kC as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER_LABEL,kE as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE,kB as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE_LABEL,kD as URL_TEMPLATIZATION_ONBOARDING_LEARN_MORE,g4 as URL_TEMPLATIZATION_ONBOARDING_RECOMMENDED_BADGE,km as URL_TEMPLATIZATION_ONBOARDING_REVERSIBLE,kA as URL_TEMPLATIZATION_ONBOARDING_SUBTITLE,kz as URL_TEMPLATIZATION_ONBOARDING_TITLE,kJ as URL_TEMPLATIZATION_PAGE_DESCRIPTION,kK as URL_TEMPLATIZATION_PAGE_TITLE,h3 as URL_TEMPLATIZATION_PLACEHOLDER_STATUS_CODES,gC as URL_TEMPLATIZATION_PLACEHOLDER_TEMPLATE,nc as URL_TEMPLATIZATION_RESULT,g1 as URL_TEMPLATIZATION_SCOPE_ALREADY_USED,g0 as URL_TEMPLATIZATION_SCOPE_ALREADY_USED_DESC,k0 as URL_TEMPLATIZATION_SCOPE_AND,gA as URL_TEMPLATIZATION_SCOPE_CLUSTER_HINT,jZ as URL_TEMPLATIZATION_SCOPE_ENTIRE_CLUSTER,j_ as URL_TEMPLATIZATION_SCOPE_LANGUAGE,j$ as URL_TEMPLATIZATION_SCOPE_NAMESPACE,k1 as URL_TEMPLATIZATION_SCOPE_SOURCE,nd as URL_TEMPLATIZATION_SEARCH_GROUPS_PLACEHOLDER,ko as URL_TEMPLATIZATION_SECTION_CUSTOM,ne as URL_TEMPLATIZATION_SECTION_DEFAULT,gU as URL_TEMPLATIZATION_SECTION_DEFAULT_TEMPLATIZATION,hk as URL_TEMPLATIZATION_SECTION_OTHER_TEMPLATES,hj as URL_TEMPLATIZATION_SECTION_OTHER_TEMPLATES_DESC,f$ as URL_TEMPLATIZATION_SECTION_SCOPE,g_ as URL_TEMPLATIZATION_SECTION_SKIP_POLICY,nf as URL_TEMPLATIZATION_SECTION_SOURCE_SCOPE,gB as URL_TEMPLATIZATION_SECTION_TEMPLATES,kv as URL_TEMPLATIZATION_SECTION_TEMPLATE_GROUPS,ng as URL_TEMPLATIZATION_SELECTED_GROUP,ge as URL_TEMPLATIZATION_SELECT_ACTION,gd as URL_TEMPLATIZATION_SELECT_ACTION_DESC,nh as URL_TEMPLATIZATION_SELECT_WHERE_TO_ADD,ni as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_SUBTITLE,nj as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_TITLE,k9 as URL_TEMPLATIZATION_SKIP_POLICIES_TITLE,gN as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_SUBTITLE,gQ as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_TITLE,nk as URL_TEMPLATIZATION_SKIP_POLICY_STATUS_LINE_DISABLED,gH as URL_TEMPLATIZATION_TEMPLATED_URL_PATH,nl as URL_TEMPLATIZATION_TEMPLATING_SCOPE_CAPTION,gY as URL_TEMPLATIZATION_TOGGLE_ENABLE_TEMPLATIZATION,h0 as URL_TEMPLATIZATION_TOGGLE_SKIP_NON_2XX,h1 as URL_TEMPLATIZATION_TOGGLE_SKIP_STATUS_CODES,gh as URL_TEMPLATIZATION_TOOLTIP_MANAGED_EXTERNALLY,gg as URL_TEMPLATIZATION_TOOLTIP_MANAGED_IN_UI,gF as URL_TEMPLATIZATION_TRY_A_URL,gG as URL_TEMPLATIZATION_TRY_A_URL_PLACEHOLDER,gc as URL_TEMPLATIZATION_USE_DEFAULT_ACTION,gb as URL_TEMPLATIZATION_USE_DEFAULT_ACTION_DESC,nm as URL_TEMPLATIZATION_VIEW_ACTION_SETTINGS,kp as URL_TEMPLATIZATION_VIEW_BY,h9 as URL_TEMPLATIZATION_VIEW_DRAWER_TITLE,kq as URL_TEMPLATIZATION_VIEW_GROUPS,ks as URL_TEMPLATIZATION_VIEW_LIST,kr as URL_TEMPLATIZATION_VIEW_TREE,fU as URL_TEMPLATIZATION_WHERE_SHOULD_APPLY,eA as canAgentReportPodStartTime,k4 as formatUrlTemplatizationDefaultStatusLineEnabled,gE as formatUrlTemplatizationDeleteScopeDescription,nn as formatUrlTemplatizationSaveFooter,ka as formatUrlTemplatizationSkipPolicyStatusLine,bH as getFireSummary,jM as getNoResultsSubTitle,e$ as getSourceConditionsForPanel,ef as getSupportedActionOptions,cd as getSupportedLanguageIcon,ce as getSupportedLanguageLabel,no as isActionSupportedOnPlatform,np as isActionSupportedOnVersion,bS as isDurationConditionType,nq as isObservationsConditionType,ca as isRuleSourceScopeSupported,bi as mapActionTypesToOptions,bq as mapRuleTypesToOptions,cb as normalizeSupportedLanguagesForDisplay,el as ruleTypeRequiresConfiguration,e_ as shouldShowSourceConditionsPanel,nr as supportsAllLanguages,cc as toScopeSupportedLanguages}from"./chunks/ui-components-CnvJIMbW.js";import"react/jsx-runtime";import"styled-components";import"./icons.js";import"zustand";import"react";import"javascript-time-ago";import"javascript-time-ago/locale/en";import"react-dom";import"prism-react-renderer";import"react-error-boundary";import"virtua";
@@ -57,6 +57,8 @@ export declare const getFindingsRowActions: (row: TableRow, openDrawer: OpenInsi
57
57
  export declare const FINDINGS_TABLE_COLUMNS: TableColumn[];
58
58
  export declare const FINDINGS_GROUP_BY_SERVICE_COLUMNS: TableColumn[];
59
59
  export declare const FINDINGS_GROUP_BY_TIME_COLUMNS: TableColumn[];
60
+ export declare const isOpenFinding: (finding: InsightsFinding) => boolean;
61
+ export declare const filterOpenFindings: (findings?: InsightsFinding[]) => InsightsFinding[];
60
62
  export declare const getCountsForFindings: (findings?: InsightsFinding[]) => {
61
63
  open: number;
62
64
  violations: number;
@@ -0,0 +1,18 @@
1
+ import type { DefaultTheme } from 'styled-components';
2
+ import { type Edge } from '@xyflow/react';
3
+ import { type DbAccess, type DbAccessFlowNode } from './types';
4
+ export declare const NODE_WIDTH = 140;
5
+ export declare const NODE_HEIGHT = 58;
6
+ export declare const systemNodeId: (system: string) => string;
7
+ export declare const nsNodeId: (system: string, ns: string) => string;
8
+ export declare const tableNodeId: (system: string, ns: string, table: string, op: string) => string;
9
+ /** Build system → namespace → table+op nodes/edges from access rows. */
10
+ export declare const buildDbAccessGraph: (accesses: DbAccess[], theme: DefaultTheme) => {
11
+ nodes: DbAccessFlowNode[];
12
+ edges: Edge[];
13
+ rootIds: string[];
14
+ };
15
+ export declare const getDbAccessElkLayout: (nodes: DbAccessFlowNode[], edges: Edge[], rootIds: string[]) => Promise<{
16
+ nodes: DbAccessFlowNode[];
17
+ edges: Edge[];
18
+ }>;
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import type { DbAccessParsedJson } from './types';
3
+ export type { DbAccessParsedJson, DbAccess } from './types';
4
+ export interface DbAccessProps {
5
+ parsedJson: DbAccessParsedJson;
6
+ }
7
+ export declare const DbAccessView: FC<DbAccessProps>;
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import '@xyflow/react/dist/style.css';
3
+ import { type DbAccess } from './types';
4
+ export interface DbAccessMapProps {
5
+ accesses: DbAccess[];
6
+ }
7
+ export declare const DbAccessMap: FC<DbAccessMapProps>;
@@ -0,0 +1,6 @@
1
+ import { type FC } from 'react';
2
+ import { type NodeProps } from '@xyflow/react';
3
+ import { type DbAccessFlowNode } from './types';
4
+ type DbAccessNodeProps = NodeProps<DbAccessFlowNode>;
5
+ export declare const DbAccessNode: FC<DbAccessNodeProps>;
6
+ export {};
@@ -0,0 +1,34 @@
1
+ import { type Node } from '@xyflow/react';
2
+ export declare enum DbAccessNodeKind {
3
+ System = "system",
4
+ Namespace = "namespace",
5
+ TableAccess = "tableAccess"
6
+ }
7
+ export declare enum DbAccessNodeTypes {
8
+ Access = "db-access"
9
+ }
10
+ export declare enum DbAccessEdgeTypes {
11
+ Animated = "db-access-animated"
12
+ }
13
+ export type DbAccessNodeData = {
14
+ kind: DbAccessNodeKind;
15
+ system: string;
16
+ ns: string;
17
+ table: string;
18
+ op: string;
19
+ };
20
+ export type DbAccessFlowNode = Node<DbAccessNodeData, DbAccessNodeTypes.Access>;
21
+ export interface DbAccess {
22
+ system: string;
23
+ ns: string;
24
+ table: string;
25
+ op: string;
26
+ }
27
+ export interface DbQueryShape {
28
+ tables: string;
29
+ op: string;
30
+ }
31
+ export interface DbAccessParsedJson {
32
+ accesses?: DbAccess[];
33
+ query_shapes?: DbQueryShape[];
34
+ }
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import type { InsightsBaselineHistogram } from '../../../../../../types';
3
+ export interface HistogramProps {
4
+ histogram: InsightsBaselineHistogram;
5
+ classDescription: string;
6
+ }
7
+ export declare const Histogram: FC<HistogramProps>;
@@ -1,5 +1,5 @@
1
1
  import { type FC } from 'react';
2
- import type { InsightsBaselineClass } from '../../../../../../types';
2
+ import { type InsightsBaselineClass } from '../../../../../../types';
3
3
  export interface BaselineDataDrawerProps {
4
4
  isOpen: boolean;
5
5
  onClose: () => void;
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import type { Library } from './types';
3
+ export { type LibrariesParsedJson } from './types';
4
+ export interface LibrariesViewProps {
5
+ libraries: Library[];
6
+ }
7
+ export declare const LibrariesView: FC<LibrariesViewProps>;
@@ -0,0 +1,7 @@
1
+ export interface Library {
2
+ ns: string;
3
+ ver?: string | null;
4
+ }
5
+ export interface LibrariesParsedJson {
6
+ libs?: Library[];
7
+ }
@@ -0,0 +1,21 @@
1
+ import type { DefaultTheme } from 'styled-components';
2
+ import { type Edge } from '@xyflow/react';
3
+ import { type OutboundPeer, type OutboundPeerFlowNode } from './types';
4
+ /** When true, map view is skipped above OUTBOUND_PEERS_MAP_NODE_LIMIT unique nodes. */
5
+ export declare const OUTBOUND_PEERS_MAP_NODE_LIMIT_ENABLED = false;
6
+ /** Cap used only when OUTBOUND_PEERS_MAP_NODE_LIMIT_ENABLED is true. */
7
+ export declare const OUTBOUND_PEERS_MAP_NODE_LIMIT = 200;
8
+ export declare const NODE_WIDTH = 200;
9
+ export declare const NODE_HEIGHT = 64;
10
+ export declare const ownerNodeId: (owner: string) => string;
11
+ export declare const peerNodeId: (host: string, port: number) => string;
12
+ /** Build owner → host:port egress graph. Owners (or ownerless peers) are pinned topmost. */
13
+ export declare const buildOutboundPeersGraph: (peers: OutboundPeer[], theme: DefaultTheme) => {
14
+ nodes: OutboundPeerFlowNode[];
15
+ edges: Edge[];
16
+ rootIds: string[];
17
+ };
18
+ export declare const getOutboundPeersElkLayout: (nodes: OutboundPeerFlowNode[], edges: Edge[], rootIds: string[]) => Promise<{
19
+ nodes: OutboundPeerFlowNode[];
20
+ edges: Edge[];
21
+ }>;
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import type { OutboundPeer } from './types';
3
+ export { type OutboundPeersParsedJson } from './types';
4
+ export interface OutboundPeersViewProps {
5
+ peers: OutboundPeer[];
6
+ }
7
+ export declare const OutboundPeersView: FC<OutboundPeersViewProps>;
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import '@xyflow/react/dist/style.css';
3
+ import { type OutboundPeer } from './types';
4
+ export interface OutboundPeersMapProps {
5
+ peers: OutboundPeer[];
6
+ }
7
+ export declare const OutboundPeersMap: FC<OutboundPeersMapProps>;
@@ -0,0 +1,6 @@
1
+ import { type FC } from 'react';
2
+ import { type NodeProps } from '@xyflow/react';
3
+ import { type OutboundPeerFlowNode } from './types';
4
+ type OutboundPeerNodeProps = NodeProps<OutboundPeerFlowNode>;
5
+ export declare const OutboundPeerNode: FC<OutboundPeerNodeProps>;
6
+ export {};
@@ -0,0 +1,25 @@
1
+ import { type Node } from '@xyflow/react';
2
+ export declare enum OutboundPeerNodeKind {
3
+ Owner = "owner",
4
+ Peer = "peer"
5
+ }
6
+ export declare enum OutboundPeerNodeTypes {
7
+ Peer = "outbound-peer"
8
+ }
9
+ export type OutboundPeerNodeData = {
10
+ kind: OutboundPeerNodeKind;
11
+ /** Service name for owners; host for peers. */
12
+ label: string;
13
+ port?: number;
14
+ external?: boolean;
15
+ };
16
+ export type OutboundPeerFlowNode = Node<OutboundPeerNodeData, OutboundPeerNodeTypes.Peer>;
17
+ export interface OutboundPeer {
18
+ host: string;
19
+ port: number;
20
+ owner?: string;
21
+ external?: boolean;
22
+ }
23
+ export interface OutboundPeersParsedJson {
24
+ peers?: OutboundPeer[];
25
+ }
@@ -0,0 +1,20 @@
1
+ import type { DefaultTheme } from 'styled-components';
2
+ import { type Edge } from '@xyflow/react';
3
+ import { type ServiceCallEdge, type ServiceCallFlowNode } from './types';
4
+ /** When true, map view is skipped above SERVICE_CALL_MAP_NODE_LIMIT unique nodes. */
5
+ export declare const SERVICE_CALL_MAP_NODE_LIMIT_ENABLED = false;
6
+ /** Cap used only when SERVICE_CALL_MAP_NODE_LIMIT_ENABLED is true. */
7
+ export declare const SERVICE_CALL_MAP_NODE_LIMIT = 200;
8
+ export declare const NODE_WIDTH = 220;
9
+ export declare const NODE_HEIGHT = 64;
10
+ export declare const endpointNodeId: (svc: string, op: string) => string;
11
+ /** Build a directed svc+op call graph. Roots (no inbound edges) are pinned leftmost. */
12
+ export declare const buildServiceCallGraph: (callEdges: ServiceCallEdge[], theme: DefaultTheme) => {
13
+ nodes: ServiceCallFlowNode[];
14
+ edges: Edge[];
15
+ rootIds: string[];
16
+ };
17
+ export declare const getServiceCallElkLayout: (nodes: ServiceCallFlowNode[], edges: Edge[], rootIds: string[]) => Promise<{
18
+ nodes: ServiceCallFlowNode[];
19
+ edges: Edge[];
20
+ }>;
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import type { ServiceCallEdge } from './types';
3
+ export { type ServiceCallEdgesParsedJson } from './types';
4
+ export interface ServiceCallEdgesViewProps {
5
+ edges: ServiceCallEdge[];
6
+ }
7
+ export declare const ServiceCallEdgesView: FC<ServiceCallEdgesViewProps>;
@@ -0,0 +1,7 @@
1
+ import { type FC } from 'react';
2
+ import '@xyflow/react/dist/style.css';
3
+ import { type ServiceCallEdge } from './types';
4
+ export interface ServiceCallEdgesMapProps {
5
+ edges: ServiceCallEdge[];
6
+ }
7
+ export declare const ServiceCallEdgesMap: FC<ServiceCallEdgesMapProps>;
@@ -0,0 +1,6 @@
1
+ import { type FC } from 'react';
2
+ import type { ServiceCallFlowNode } from './types';
3
+ import { type NodeProps } from '@xyflow/react';
4
+ type ServiceCallNodeProps = NodeProps<ServiceCallFlowNode>;
5
+ export declare const ServiceCallNode: FC<ServiceCallNodeProps>;
6
+ export {};
@@ -0,0 +1,23 @@
1
+ import { type Node } from '@xyflow/react';
2
+ export declare enum ServiceCallNodeTypes {
3
+ Call = "service-call"
4
+ }
5
+ export type ServiceCallNodeData = {
6
+ svc: string;
7
+ op: string;
8
+ isRoot: boolean;
9
+ /** True when every inbound edge is from the same svc — hide service chrome, show op only. */
10
+ sameServiceAsSource: boolean;
11
+ };
12
+ export type ServiceCallFlowNode = Node<ServiceCallNodeData, ServiceCallNodeTypes.Call>;
13
+ export interface ServiceCallEndpoint {
14
+ svc: string;
15
+ op: string;
16
+ }
17
+ export interface ServiceCallEdge {
18
+ from: ServiceCallEndpoint;
19
+ to: ServiceCallEndpoint;
20
+ }
21
+ export interface ServiceCallEdgesParsedJson {
22
+ edges?: ServiceCallEdge[];
23
+ }
@@ -18,7 +18,7 @@ export declare const buildSearchResults: ({ instrumentationRules, sources, actio
18
18
  entities: InstrumentationRule[] | Workload[] | Action[] | Destination[];
19
19
  }[];
20
20
  searchResults: {
21
- entities: Action[] | Destination[] | Workload[] | InstrumentationRule[];
21
+ entities: Workload[] | Destination[] | Action[] | InstrumentationRule[];
22
22
  category: Category;
23
23
  label: string;
24
24
  count: number;
@@ -1,4 +1,4 @@
1
1
  import { Tabs } from '../../enum';
2
2
  import { type TextCardProps } from '../../../../components';
3
3
  import { type GatewayInfo, type NodeCollectoInfo } from '../../../../types';
4
- export declare const getGeneralTextCards: (selectedTab: Tabs, gatewayInfo: GatewayInfo | null, nodeCollectorInfo: NodeCollectoInfo | null, isLoading: boolean) => TextCardProps[];
4
+ export declare const getGeneralTextCards: (selectedTab: Tabs, gatewayInfo: GatewayInfo | null, nodeCollectorInfo: NodeCollectoInfo | null, isLoading: boolean, withDataThroughput: boolean) => TextCardProps[];
@@ -6,5 +6,6 @@ export interface GeneralInfoProps {
6
6
  gatewayInfo: GatewayInfo | null;
7
7
  nodeCollectorInfo: NodeCollectoInfo | null;
8
8
  isLoading: boolean;
9
+ withDataThroughput: boolean;
9
10
  }
10
11
  export declare const GeneralInfo: FC<GeneralInfoProps>;