@odigos/ui-kit 0.0.295 → 0.0.297

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 (45) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/lib/chunks/{helpers-CVRjhvw4.js → helpers-BAKrBm6o.js} +1 -1
  3. package/lib/chunks/index-CmgxyAds.js +358 -0
  4. package/lib/chunks/{source-instrument-form-context-CgGshOFa.js → source-instrument-form-context-D_S8tMme.js} +2 -2
  5. package/lib/chunks/ui-components-ChTo9ZLp.js +2163 -0
  6. package/lib/components/_cards/data-card/index.d.ts +3 -0
  7. package/lib/components/field-title/index.d.ts +1 -1
  8. package/lib/components/fullscreen/index.d.ts +21 -0
  9. package/lib/components/index.d.ts +1 -0
  10. package/lib/components/info-row/index.d.ts +4 -0
  11. package/lib/components/input/index.d.ts +3 -1
  12. package/lib/components/ping/index.d.ts +2 -1
  13. package/lib/components/table/types.d.ts +1 -0
  14. package/lib/components/trace-view/index.d.ts +1 -1
  15. package/lib/components/trace-view/styled.d.ts +12 -5
  16. package/lib/components/trace-view/types.d.ts +9 -4
  17. package/lib/components.js +1 -1
  18. package/lib/constants/insights/system.d.ts +2 -2
  19. package/lib/constants.js +1 -1
  20. package/lib/containers/_drawers/edit-source-drawer/profiling/flame-graph-canvas.d.ts +1 -1
  21. package/lib/containers/_drawers/edit-source-drawer/profiling/index.d.ts +0 -2
  22. package/lib/containers/insights/findings/drawer/anomaly/anomaly-trace-compare/helpers.d.ts +10 -2
  23. package/lib/containers/insights/findings/drawer/index.d.ts +2 -2
  24. package/lib/containers/insights/insights-context.d.ts +11 -6
  25. package/lib/containers.js +531 -531
  26. package/lib/contexts/odigos-api/types.d.ts +1 -0
  27. package/lib/contexts.js +1 -1
  28. package/lib/functions/parse-raw-otlp/index.d.ts +2 -1
  29. package/lib/functions.js +1 -1
  30. package/lib/hooks/index.d.ts +1 -0
  31. package/lib/hooks/useFullscreen.d.ts +14 -0
  32. package/lib/hooks.js +1 -1
  33. package/lib/icons.js +1 -1
  34. package/lib/snippets/blast-radius/helpers.d.ts +5 -5
  35. package/lib/snippets/blast-radius/types.d.ts +0 -4
  36. package/lib/snippets/graph-flow/types.d.ts +4 -0
  37. package/lib/snippets.js +1 -1
  38. package/lib/store.js +1 -1
  39. package/lib/theme/palettes/index.d.ts +1 -0
  40. package/lib/theme.js +1 -1
  41. package/lib/types.js +1 -1
  42. package/lib/visuals.js +1 -1
  43. package/package.json +1 -1
  44. package/lib/chunks/index-B13xWqwt.js +0 -342
  45. package/lib/chunks/ui-components-DwtaxXwl.js +0 -2120
@@ -5,6 +5,7 @@ import { DefaultTheme } from 'styled-components';
5
5
  import { type ActionsProps } from '../../../snippets/actions';
6
6
  import { type DropDataProps } from '../../drop-data';
7
7
  import { type RichTitleProps } from '../../../snippets/rich-title';
8
+ import { type ButtonProps } from '../../button';
8
9
  type BgTint = keyof DefaultTheme['v2']['colors']['silver'];
9
10
  export interface DataCardProps {
10
11
  bgTint?: BgTint;
@@ -33,6 +34,8 @@ export interface DataCardProps {
33
34
  label?: string;
34
35
  labelTooltip?: string;
35
36
  withCopy?: boolean;
37
+ /** Optional icon/text button rendered next to copy (e.g. open related drawer). */
38
+ button?: ButtonProps;
36
39
  badge?: BadgeProps;
37
40
  tag?: TagProps;
38
41
  }[];
@@ -6,6 +6,6 @@ export interface FieldTitleProps {
6
6
  required?: boolean;
7
7
  badge?: BadgeProps;
8
8
  width?: CSSProperties['width'];
9
- smallAndDark?: boolean;
9
+ small?: boolean;
10
10
  }
11
11
  export declare const FieldTitle: FC<FieldTitleProps>;
@@ -0,0 +1,21 @@
1
+ import { type CSSProperties, type FC, type ReactNode } from 'react';
2
+ export interface FullscreenPortalProps {
3
+ isFullscreen: boolean;
4
+ /** In-flow placeholder height while content is portaled, so the layout does not jump on exit. */
5
+ spacerHeight?: number | string;
6
+ children: ReactNode;
7
+ }
8
+ /**
9
+ * When fullscreen, portals children to `document.body` in a full-viewport overlay.
10
+ * Leaves an optional spacer in the original slot to preserve scroll/layout.
11
+ */
12
+ export declare const FullscreenPortal: FC<FullscreenPortalProps>;
13
+ export interface FullscreenToggleButtonProps {
14
+ isFullscreen: boolean;
15
+ onToggle: () => void;
16
+ /** Optional absolute positioning wrapper style (e.g. GraphFlow top-right control). */
17
+ style?: CSSProperties;
18
+ className?: string;
19
+ }
20
+ /** Expand / exit control shared by GraphFlow maps and profiling flamegraph. */
21
+ export declare const FullscreenToggleButton: FC<FullscreenToggleButtonProps>;
@@ -16,6 +16,7 @@ export * from './drop-down';
16
16
  export * from './error-boundary';
17
17
  export * from './field-message';
18
18
  export * from './field-title';
19
+ export * from './fullscreen';
19
20
  export * from './header';
20
21
  export * from './hover-actions';
21
22
  export * from './icon-button';
@@ -1,7 +1,11 @@
1
1
  import { type FC } from 'react';
2
+ import { type PingProps } from '../ping';
2
3
  export interface InfoRowProps {
3
4
  label: string;
4
5
  value?: string | null;
6
+ /** Renders a Ping of this color after the label — used to flag the row without tinting it. */
7
+ labelPingColor?: PingProps['color'] | null;
8
+ labelPingTooltip?: PingProps['tooltip'] | null;
5
9
  isStandardLibrary?: boolean | null;
6
10
  healthy?: boolean | null;
7
11
  message?: string | null;
@@ -1,6 +1,6 @@
1
1
  import { type InputHTMLAttributes, type FC, type CSSProperties } from 'react';
2
- import { type BadgeProps } from '../badge';
3
2
  import { type SVG } from '../../types';
3
+ import { type BadgeProps } from '../badge';
4
4
  import { type FieldMessageProps } from '../field-message';
5
5
  export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'title'>, FieldMessageProps {
6
6
  label?: string;
@@ -8,7 +8,9 @@ export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>,
8
8
  tooltip?: string;
9
9
  badge?: BadgeProps;
10
10
  leftIcon?: SVG;
11
+ leftIconClick?: () => void;
11
12
  rightIcon?: SVG;
13
+ rightIconClick?: () => void;
12
14
  /** Static text rendered inside the control, after the value (e.g. a unit). */
13
15
  suffix?: string;
14
16
  hasError?: boolean;
@@ -1,5 +1,6 @@
1
1
  import { type CSSProperties, type FC } from 'react';
2
2
  export interface PingProps {
3
- color?: CSSProperties['backgroundColor'];
3
+ color?: CSSProperties['backgroundColor'] | null;
4
+ tooltip?: string | null;
4
5
  }
5
6
  export declare const Ping: FC<PingProps>;
@@ -57,6 +57,7 @@ export interface TableRow {
57
57
  isSelected?: boolean;
58
58
  onSelect?: () => void;
59
59
  onDeselect?: () => void;
60
+ /** Omit this row's checkbox. If every visible row sets this, the checkbox column is removed. */
60
61
  hideCheckbox?: boolean;
61
62
  /** Render the checkbox but lock it (e.g. the row is managed elsewhere). Excluded from the header "select all". */
62
63
  checkboxDisabled?: boolean;
@@ -1,4 +1,4 @@
1
1
  import { type FC } from 'react';
2
2
  import type { TraceViewProps } from './types';
3
- export type { TraceViewAttribute, TraceViewCorner, TraceViewHeaderBadge, TraceViewMetaChip as TraceViewMetaChipType, TraceViewProps, TraceViewRow, TraceViewRowBadge, TraceViewRowVariant, } from './types';
3
+ export type { TraceViewAttribute, TraceViewAttributeDiff, TraceViewCorner, TraceViewHeaderBadge, TraceViewMetaChip as TraceViewMetaChipType, TraceViewProps, TraceViewRow, TraceViewRowBadge, TraceViewRowVariant, } from './types';
4
4
  export declare const TraceView: FC<TraceViewProps>;
@@ -1,4 +1,4 @@
1
- import type { TraceViewCorner, TraceViewRowVariant } from './types';
1
+ import type { TraceViewAttributeDiff, TraceViewCorner, TraceViewRowVariant } from './types';
2
2
  export declare const TraceViewRoot: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
3
3
  style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
4
4
  }> & string;
@@ -46,7 +46,7 @@ export declare const TraceViewDuration: import("styled-components/dist/types").I
46
46
  export declare const TraceViewInlineBadge: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
47
47
  style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
48
48
  }, {
49
- $tone: "warning" | "danger" | "success";
49
+ $tone: "warning" | "danger" | "success" | "info";
50
50
  }>> & string;
51
51
  export declare const TraceViewPlaceholderBody: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
52
52
  style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
@@ -54,7 +54,14 @@ export declare const TraceViewPlaceholderBody: import("styled-components/dist/ty
54
54
  export declare const TraceViewDetails: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
55
55
  style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
56
56
  }> & string;
57
- /** In-detail expand filler: same height as InfoRow so paired compare rows stay aligned. */
58
- export declare const TraceViewDetailPlaceholder: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
57
+ export declare const TraceViewDetailRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
59
58
  style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
60
- }> & string;
59
+ }, {
60
+ $diff?: TraceViewAttributeDiff | null;
61
+ }>> & string;
62
+ /** In-detail gap opposite an added/removed field: same height as InfoRow so paired compare rows stay aligned. */
63
+ export declare const TraceViewDetailPlaceholder: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
64
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
65
+ }, {
66
+ $diff?: TraceViewAttributeDiff | null;
67
+ }>> & string;
@@ -1,15 +1,18 @@
1
1
  import type { SVG } from '../../types';
2
- export type TraceViewRowVariant = 'default' | 'timing' | 'new' | 'placeholder';
2
+ export type TraceViewRowVariant = 'default' | 'timing' | 'new' | 'placeholder' | 'removed';
3
3
  export type TraceViewCorner = 'left' | 'right' | 'both' | 'none';
4
+ /** Field-level diff of an attribute against the paired span's attribute of the same key. */
5
+ export type TraceViewAttributeDiff = 'added' | 'removed' | 'changed';
4
6
  export interface TraceViewAttribute {
5
7
  key?: string | null;
6
8
  value?: string | null;
7
- /** Compare-mode gap: render a green + detail row instead of a key/value. */
9
+ /** Compare-mode gap: render a +/- detail row instead of a key/value. */
8
10
  placeholder?: boolean | null;
11
+ diff?: TraceViewAttributeDiff | null;
9
12
  }
10
13
  export interface TraceViewRowBadge {
11
14
  label?: string | null;
12
- tone?: 'warning' | 'danger' | 'success' | null;
15
+ tone?: 'warning' | 'danger' | 'success' | 'info' | null;
13
16
  icon?: SVG | null;
14
17
  }
15
18
  export interface TraceViewRow {
@@ -22,7 +25,8 @@ export interface TraceViewRow {
22
25
  durationLabel?: string | null;
23
26
  depth?: number | null;
24
27
  variant?: TraceViewRowVariant | null;
25
- badge?: TraceViewRowBadge | null;
28
+ /** Inline badges rendered after the span name. Gap rows draw the first badge's icon as their marker. */
29
+ badges?: TraceViewRowBadge[] | null;
26
30
  scope?: string | null;
27
31
  /** Compare-mode gap when the paired span has a scope and this side does not. */
28
32
  scopePlaceholder?: boolean | null;
@@ -36,6 +40,7 @@ export interface TraceViewHeaderBadge {
36
40
  tone?: 'success' | 'danger' | 'neutral' | null;
37
41
  }
38
42
  export interface TraceViewProps {
43
+ traceId?: string | null;
39
44
  title?: string;
40
45
  titleIcon?: SVG;
41
46
  headerBadge?: TraceViewHeaderBadge | null;
package/lib/components.js CHANGED
@@ -1 +1 @@
1
- export{$ as Autocomplete,c1 as Badge,iW as BarChart,B as Button,i as ButtonSize,nJ as ButtonTab,nK as ButtonTabList,j as ButtonVariants,C as CenterThis,s as Checkbox,nL as CheckboxList,a1 as CheckboxSize,eI as CliCommand,b6 as Code,er as Condition,et as Conditions,nM 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,nN as ErrorBoundary,k as FieldMessage,d as FieldTitle,F as FlexColumn,h as FlexRow,jk as GaugeChart,jl as GaugeChartVariant,nO as Header,nP as HoverActions,nQ 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,nR as ModalBody,nS as Navbar,N as NoData,G as Note,nT as Overlay,b_ as Padding,iE as PageContent,iX as Ping,nU as Popup,d8 as PopupAlignX,hn as PopupAlignY,au as Radio,ep as RadioCard,nV as RadioGroup,c6 as RadioSize,b1 as ScrollY,b3 as Search,Y as SectionCard,nW as SectionCardSize,_ as Segment,a8 as SegmentSize,f0 as SegmentVariant,iP as SelectWindowHours,b$ as SkeletonLoader,jJ as StatusCard,jo as Stepper,iO as TIME_WINDOW_DEFAULT_VALUE,f1 as Table,nX as TableContainer,nY as TableTitleWrap,f2 as TableVariant,nZ as TableWrap,K as Tag,dU as TagSizes,bC as TagVariants,v as TextArea,iF as TextCard,r as TimeInput,o as Toggle,n_ as ToggleCodeComponent,p as ToggleLabelAlign,n$ as ToggleList,q as ToggleSize,gX as ToggleVariant,T as Tooltip,iS as TraceView,c7 as TruncatableTypography,e as Typography,f as TypographyColor,g as TypographySize,em as TypographyVariants,jn as UpgradeRequiredWrapper,o0 as VerticalScroll,W as WarningModal,iQ as getWindowHoursButtonProps,o1 as resolveTypographyColor}from"./chunks/ui-components-DwtaxXwl.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";
1
+ export{a3 as Autocomplete,c5 as Badge,i_ as BarChart,B as Button,i as ButtonSize,nM as ButtonTab,nN as ButtonTabList,j as ButtonVariants,C as CenterThis,x as Checkbox,nO as CheckboxList,a5 as CheckboxSize,eM as CliCommand,ba as Code,ev as Condition,ex as Conditions,nP as DEFAULT_TIME_UNITS,K as DataCard,aa as Divider,D as Drawer,aE as DropData,dc as DropDataAlignX,hr as DropDataAlignY,y as DropDown,nQ as ErrorBoundary,k as FieldMessage,d as FieldTitle,F as FlexColumn,h as FlexRow,l as FullscreenPortal,m as FullscreenToggleButton,jn as GaugeChart,jo as GaugeChartVariant,nR as Header,nS as HoverActions,nT as INFO_ROW_HEIGHT_PX,el as IconButton,em as IconButtonSize,eR as IconGroup,eK as InfoRow,H as Input,ab as InputCardTable,G as InputList,I as InputTable,cY as Island,d1 as IslandPosition,b6 as Loader,hs as Modal,nU as ModalBody,nV as Navbar,N as NoData,L as Note,nW as Overlay,c2 as Padding,iI as PageContent,n as Ping,nX as Popup,dc as PopupAlignX,hr as PopupAlignY,ay as Radio,et as RadioCard,nY as RadioGroup,ca as RadioSize,b5 as ScrollY,b7 as Search,a0 as SectionCard,nZ as SectionCardSize,a2 as Segment,ac as SegmentSize,f4 as SegmentVariant,iT as SelectWindowHours,c3 as SkeletonLoader,jM as StatusCard,jr as Stepper,iS as TIME_WINDOW_DEFAULT_VALUE,f5 as Table,n_ as TableContainer,n$ as TableTitleWrap,f6 as TableVariant,o0 as TableWrap,Q as Tag,dY as TagSizes,bG as TagVariants,z as TextArea,iJ as TextCard,w as TimeInput,r as Toggle,o1 as ToggleCodeComponent,s as ToggleLabelAlign,o2 as ToggleList,v as ToggleSize,g$ as ToggleVariant,T as Tooltip,iW as TraceView,cb as TruncatableTypography,e as Typography,f as TypographyColor,g as TypographySize,eq as TypographyVariants,jq as UpgradeRequiredWrapper,o3 as VerticalScroll,W as WarningModal,iU as getWindowHoursButtonProps,o4 as resolveTypographyColor}from"./chunks/ui-components-ChTo9ZLp.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";
@@ -24,12 +24,12 @@ export declare const LABEL_FLUSH_INTERVAL = "Flush interval";
24
24
  export declare const HELPER_FLUSH_INTERVAL = "How often pending learning data and occurrence counts are written to ClickHouse. Changes apply without a restart.";
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
- 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.";
27
+ export declare const HELPER_AUTO_TRANSACTION_GUARDRAIL = "When a service finishes promoting (every transaction leaves learning), automatically create an enforced allowed_transactions guardrail.";
28
28
  export declare const HELPER_IDENTITY_DIMENSIONS = "Low-cardinality only. Each enabled dimension multiplies transaction count, resident memory, and baseline rows.";
29
29
  export declare const HELPER_IDENTITY_DIMENSIONS_GOOD: string[];
30
30
  export declare const HELPER_IDENTITY_DIMENSIONS_BAD: string[];
31
31
  export declare const HINT_IDENTITY_DIMENSIONS = "Up to 5 enabled at once. Changing dimensions creates new transaction identities.";
32
- export declare const LABEL_IDENTITY_EMPTY = "No dimensions configured \u2014 transactions use the entry span name only.";
32
+ export declare const LABEL_IDENTITY_EMPTY = "No dimensions configured - transactions use the entry span name only.";
33
33
  export declare const BTN_ADD_IDENTITY_DIMENSION = "Add dimension";
34
34
  export declare const PLACEHOLDER_IDENTITY_KEY = "e.g. http.response.status_code";
35
35
  export declare const LABEL_IDENTITY_ENABLED = "On";
package/lib/constants.js CHANGED
@@ -1 +1 @@
1
- export{fg as ACCEPT_RECOMMENDATION_DESCRIPTION,c0 as ACTION_CATEGORIES,bt as ACTION_OPTIONS,lI as ACTION_TYPE_TO_CATEGORY,lJ as ALL_LANGUAGES_WILDCARD,lK 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,lL as BTN_ADD_OVERRIDE,j5 as BTN_ADD_OVERRIDE_POLICY,dp as BTN_ADD_SELECTION,fw as BTN_CANCEL,fD as BTN_CONTINUE_EDITING,jL 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,lM 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,lN as CREATE_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,lO as CREATE_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,lP as CREATE_NOISY_AUTO_RULE_DRAWER_TITLE,bh as DEFAULT_CLUSTER_ID,en as DEFAULT_CLUSTER_NAME,jG as DEFAULT_DATA_STREAM_NAME,bV as DEFAULT_IDENTITY_DIMENSIONS,ct as DESC_ADOPT_ENFORCE,cv as DESC_ADOPT_SUGGEST,iZ 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,iU as DESC_COMING_SOON,ao as DESC_DURATION,cL as DESC_EGRESS,cO as DESC_EGRESS_EXTRA,lQ as DESC_ERRORS,e3 as DESC_IDENTITY_CHANGED,i$ as DESC_LEARNING_POLICIES,cD as DESC_NO_CALLEES,cw as DESC_NO_CALLERS,j9 as DESC_NO_DEFAULT_DETECTION_POLICY,j0 as DESC_NO_DEFAULT_LEARNING_POLICY,ja as DESC_NO_DETECTION_OVERRIDES,cJ as DESC_NO_EGRESS,jf as DESC_NO_GUARDRAILS,j3 as DESC_NO_LEARNING_OVERRIDES,cQ as DESC_NO_TRANSACTIONS,ar as DESC_OPERATION,i_ as DESC_PANEL_GUARDRAILS,lR 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,js 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,jO 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,je 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,iV as LABEL_COMING_SOON,lS as LABEL_CONDITION_MIN_DURATION,lT as LABEL_CONDITION_MIN_OBSERVATIONS,lU as LABEL_CONDITION_STABLE_DURATION,lV 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,jc 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,lW as LABEL_MODE_ALL,lX as LABEL_MODE_ALL_AND,lY as LABEL_MODE_ANY,lZ as LABEL_MODE_ANY_OR,bQ as LABEL_MODE_K_OF,l_ 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,m0 as LABEL_RULE_ENABLED,aS as LABEL_RULE_NAME,aT as LABEL_RULE_TYPE,aO as LABEL_SAMPLE,dD as LABEL_SAMPLE_TRACE_RETENTION,ji as LABEL_SELECT_A_GUARDRAIL,j7 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,jd 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,m1 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,jS as SAMPLING_BTN_CREATE_RULE,jQ as SAMPLING_BTN_DOCS,jR 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,jV as SAMPLING_DELETE_MODAL_APPROVE,jW as SAMPLING_DELETE_MODAL_CANCEL,jX as SAMPLING_DELETE_MODAL_DESCRIPTION,jY as SAMPLING_DELETE_MODAL_TITLE,fO as SAMPLING_DRAWER_WIDTH,jP 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,jT as SAMPLING_PAGE_DESCRIPTION,jU 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,m2 as SECTION_APPLIED,m3 as SECTION_DISMISSED,am as SECTION_DURATION,ak as SECTION_ERRORS,ch as SECTION_KEEP_PERCENTAGE,m4 as SECTION_NOT_APPLICABLE,aq as SECTION_OPERATION,m5 as SECTION_RECOMMENDED,a_ as SECTION_SAMPLING_PREVIEW,a4 as SECTION_SOURCE_SCOPE,fn as SECTION_TITLES,jr 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,jb 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,jh as TITLE_CREATED_GUARDRAILS,e8 as TITLE_DANGEROUS_SUBCASES,dL as TITLE_DATABASE_WRITEBACK,j2 as TITLE_DEFAULT_POLICY,co as TITLE_EDIT_GUARDRAIL,cM as TITLE_EGRESS,cP as TITLE_EGRESS_EXTRA,jj as TITLE_GUARDRAILS,e4 as TITLE_IDENTITY_CHANGED,cp as TITLE_INSPECT_SERVICE,ds as TITLE_LEARNING_EXAMPLES,j8 as TITLE_LEARNING_POLICIES,dE as TITLE_MEMORY_LIMITS,cE as TITLE_NO_CALLEES,cx as TITLE_NO_CALLERS,j1 as TITLE_NO_DEFAULT_POLICY,cK as TITLE_NO_EGRESS,jg as TITLE_NO_GUARDRAILS,j4 as TITLE_NO_OVERRIDES,jK as TITLE_NO_RESULTS,jM as TITLE_NO_RULES,cR as TITLE_NO_TRANSACTIONS,j6 as TITLE_OVERRIDES,dz as TITLE_RETENTION,cT as TITLE_TRANSACTIONS,dP as TITLE_TRANSACTION_GUARDRAILS,dS as TITLE_TRANSACTION_IDENTITY,m6 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,m7 as URL_TEMPLATIZATION_ACTION_NAME_LABEL,ku as URL_TEMPLATIZATION_ACTION_SUMMARY,m8 as URL_TEMPLATIZATION_ADD_EXISTING_GROUP,m9 as URL_TEMPLATIZATION_ADD_NEW_GROUP,ma as URL_TEMPLATIZATION_ADD_TEMPLATE_TO_SCOPE,g2 as URL_TEMPLATIZATION_ADD_TO_EXISTING_ACTION,mb as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION,mc as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION_DESC,g9 as URL_TEMPLATIZATION_ADVANCED_DEFAULT_SUMMARY,ki 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,kj 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,kg as URL_TEMPLATIZATION_AUTO_CARD_ACTIVE_BADGE,md as URL_TEMPLATIZATION_AUTO_CARD_BTN_ADD_DISABLED,me as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_EMPTY,mf as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_SECTION_TITLE,mg as URL_TEMPLATIZATION_AUTO_CARD_HINT,mh as URL_TEMPLATIZATION_AUTO_CARD_STAT_DISABLED,mi as URL_TEMPLATIZATION_AUTO_CARD_STAT_NONE,mj as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE,mk as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE_VALUE,ml as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES,mm as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES_ALL,kh as URL_TEMPLATIZATION_AUTO_CARD_SUBTITLE,kf 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,mn as URL_TEMPLATIZATION_BADGE_UI,k3 as URL_TEMPLATIZATION_BTN_ADD_DISABLED_SCOPE,gK as URL_TEMPLATIZATION_BTN_ADD_RULE,k9 as URL_TEMPLATIZATION_BTN_ADD_SKIP_POLICY_SCOPE,mo 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,kJ as URL_TEMPLATIZATION_BTN_CREATE,mp as URL_TEMPLATIZATION_BTN_CREATE_GROUP,kv as URL_TEMPLATIZATION_BTN_CREATE_TEMPLATE_GROUP,k6 as URL_TEMPLATIZATION_BTN_DELETE_DISABLED_SCOPE,gt as URL_TEMPLATIZATION_BTN_DELETE_SCOPE,kc as URL_TEMPLATIZATION_BTN_DELETE_SKIP_POLICY,kI as URL_TEMPLATIZATION_BTN_DOCS,h8 as URL_TEMPLATIZATION_BTN_EDIT,hi as URL_TEMPLATIZATION_BTN_EDIT_GROUP,mq as URL_TEMPLATIZATION_BTN_ENABLE_DEFAULT,gy as URL_TEMPLATIZATION_BTN_NEXT,gw as URL_TEMPLATIZATION_BTN_SAVE,mr as URL_TEMPLATIZATION_BTN_TEST_URL,ms as URL_TEMPLATIZATION_CHOOSE_DESTINATION,mt as URL_TEMPLATIZATION_CHOOSE_DESTINATION_DESC,h5 as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_DESCRIPTION,h6 as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_TARGET,mu as URL_TEMPLATIZATION_CREATE_GROUP_FOR_SCOPE,fQ as URL_TEMPLATIZATION_CREATE_NEW_ACTION,mv 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,mw as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE_NEW_SCOPE,mx as URL_TEMPLATIZATION_CUSTOM_EMPTY_SUBTITLE,my as URL_TEMPLATIZATION_CUSTOM_EMPTY_TITLE,mz as URL_TEMPLATIZATION_CUSTOM_SECTION_SUBTITLE,fP as URL_TEMPLATIZATION_DEFAULT_ACTION_NAME,mA as URL_TEMPLATIZATION_DEFAULT_ACTION_OPTION_ID,mB as URL_TEMPLATIZATION_DEFAULT_CONFIGURED_PLACEHOLDER,mC as URL_TEMPLATIZATION_DEFAULT_DISABLED_SCOPES_TITLE,mD as URL_TEMPLATIZATION_DEFAULT_EMPTY_SUBTITLE,mE as URL_TEMPLATIZATION_DEFAULT_EMPTY_TITLE,gO as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_SUBTITLE,gS as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_TITLE,mF as URL_TEMPLATIZATION_DEFAULT_SECTION_SUBTITLE,mG as URL_TEMPLATIZATION_DEFAULT_SETTINGS,gV as URL_TEMPLATIZATION_DEFAULT_STATUS_DISABLED,mH as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED,mI as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED_GLOBALLY,mJ as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_DISABLED,mK as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_ENABLED_GLOBALLY,mL as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_UNSET,mM as URL_TEMPLATIZATION_DEFAULT_STATUS_UNSET,k7 as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_DESCRIPTION,k8 as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_TARGET,gD as URL_TEMPLATIZATION_DELETE_SCOPE_TARGET,kd as URL_TEMPLATIZATION_DELETE_SKIP_POLICY_DESCRIPTION,ke 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,mN 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,mO as URL_TEMPLATIZATION_DESTINATION_CLUSTER_HINT,fY as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER,fX as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_DESC,mP as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_TOOLTIP,mQ 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,mR 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,mS as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_COVERED,mT as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_OFF,mU as URL_TEMPLATIZATION_DISABLED_SCOPES_BTN_ADD,mV as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_BEHAVIOR,mW as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_SCOPE,mX as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_STATUS,mY as URL_TEMPLATIZATION_DISABLED_SCOPES_COUNT,mZ as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_SUBTITLE,m_ as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_TITLE,m$ as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_DISABLED,n0 as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_REDUNDANT,n1 as URL_TEMPLATIZATION_DISABLED_SCOPES_SUBTITLE,n2 as URL_TEMPLATIZATION_DISABLED_SCOPES_SUMMARY,k4 as URL_TEMPLATIZATION_DISABLED_SCOPES_TITLE,gP as URL_TEMPLATIZATION_DISABLE_SCOPE_DRAWER_TITLE,kH 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,n3 as URL_TEMPLATIZATION_EXISTING_TEMPLATING_SCOPE,gM as URL_TEMPLATIZATION_FOOTER_IMMEDIATE_EFFECT,n4 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,n5 as URL_TEMPLATIZATION_MATCHING_GROUP_LABEL,n6 as URL_TEMPLATIZATION_MATCH_FOUND,n7 as URL_TEMPLATIZATION_MATCH_FOUND_HINT,n8 as URL_TEMPLATIZATION_NEW_ACTION_HINT,g7 as URL_TEMPLATIZATION_NEW_ACTION_NAME_LABEL,g8 as URL_TEMPLATIZATION_NEW_ACTION_PLACEHOLDER,n9 as URL_TEMPLATIZATION_NEW_GROUP_DEFAULT_HINT,na as URL_TEMPLATIZATION_NOTE_ENTIRE_CLUSTER,gI as URL_TEMPLATIZATION_NO_MATCH,nb as URL_TEMPLATIZATION_NO_MATCH_HELP,nc as URL_TEMPLATIZATION_NO_MATCH_HINT,gf as URL_TEMPLATIZATION_ODIGOS_ACTION_CAPTION,km as URL_TEMPLATIZATION_ONBOARDING_APPLIES_TO,kl as URL_TEMPLATIZATION_ONBOARDING_AUTO_DESCRIPTION,kk as URL_TEMPLATIZATION_ONBOARDING_AUTO_TITLE,kz as URL_TEMPLATIZATION_ONBOARDING_BTN_CREATE_CUSTOM,ko as URL_TEMPLATIZATION_ONBOARDING_BTN_REVIEW_ENABLE,ky as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_DESCRIPTION,kx as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_TITLE,kG as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER,kD as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER_LABEL,kF as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE,kC as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE_LABEL,kE as URL_TEMPLATIZATION_ONBOARDING_LEARN_MORE,g4 as URL_TEMPLATIZATION_ONBOARDING_RECOMMENDED_BADGE,kn as URL_TEMPLATIZATION_ONBOARDING_REVERSIBLE,kB as URL_TEMPLATIZATION_ONBOARDING_SUBTITLE,kA as URL_TEMPLATIZATION_ONBOARDING_TITLE,kK as URL_TEMPLATIZATION_PAGE_DESCRIPTION,kL as URL_TEMPLATIZATION_PAGE_TITLE,h3 as URL_TEMPLATIZATION_PLACEHOLDER_STATUS_CODES,gC as URL_TEMPLATIZATION_PLACEHOLDER_TEMPLATE,nd as URL_TEMPLATIZATION_RESULT,g1 as URL_TEMPLATIZATION_SCOPE_ALREADY_USED,g0 as URL_TEMPLATIZATION_SCOPE_ALREADY_USED_DESC,k1 as URL_TEMPLATIZATION_SCOPE_AND,gA as URL_TEMPLATIZATION_SCOPE_CLUSTER_HINT,j_ as URL_TEMPLATIZATION_SCOPE_ENTIRE_CLUSTER,j$ as URL_TEMPLATIZATION_SCOPE_LANGUAGE,k0 as URL_TEMPLATIZATION_SCOPE_NAMESPACE,k2 as URL_TEMPLATIZATION_SCOPE_SOURCE,ne as URL_TEMPLATIZATION_SEARCH_GROUPS_PLACEHOLDER,kp as URL_TEMPLATIZATION_SECTION_CUSTOM,nf 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,ng as URL_TEMPLATIZATION_SECTION_SOURCE_SCOPE,gB as URL_TEMPLATIZATION_SECTION_TEMPLATES,kw as URL_TEMPLATIZATION_SECTION_TEMPLATE_GROUPS,nh as URL_TEMPLATIZATION_SELECTED_GROUP,ge as URL_TEMPLATIZATION_SELECT_ACTION,gd as URL_TEMPLATIZATION_SELECT_ACTION_DESC,ni as URL_TEMPLATIZATION_SELECT_WHERE_TO_ADD,nj as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_SUBTITLE,nk as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_TITLE,ka as URL_TEMPLATIZATION_SKIP_POLICIES_TITLE,gN as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_SUBTITLE,gQ as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_TITLE,nl as URL_TEMPLATIZATION_SKIP_POLICY_STATUS_LINE_DISABLED,gH as URL_TEMPLATIZATION_TEMPLATED_URL_PATH,nm 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,nn as URL_TEMPLATIZATION_VIEW_ACTION_SETTINGS,kq as URL_TEMPLATIZATION_VIEW_BY,h9 as URL_TEMPLATIZATION_VIEW_DRAWER_TITLE,kr as URL_TEMPLATIZATION_VIEW_GROUPS,kt as URL_TEMPLATIZATION_VIEW_LIST,ks as URL_TEMPLATIZATION_VIEW_TREE,fU as URL_TEMPLATIZATION_WHERE_SHOULD_APPLY,eA as canAgentReportPodStartTime,k5 as formatUrlTemplatizationDefaultStatusLineEnabled,gE as formatUrlTemplatizationDeleteScopeDescription,no as formatUrlTemplatizationSaveFooter,kb as formatUrlTemplatizationSkipPolicyStatusLine,bH as getFireSummary,jN as getNoResultsSubTitle,e$ as getSourceConditionsForPanel,ef as getSupportedActionOptions,cd as getSupportedLanguageIcon,ce as getSupportedLanguageLabel,np as isActionSupportedOnPlatform,nq as isActionSupportedOnVersion,bS as isDurationConditionType,nr as isObservationsConditionType,ca as isRuleSourceScopeSupported,bi as mapActionTypesToOptions,bq as mapRuleTypesToOptions,cb as normalizeSupportedLanguagesForDisplay,el as ruleTypeRequiresConfiguration,e_ as shouldShowSourceConditionsPanel,ns as supportsAllLanguages,cc as toScopeSupportedLanguages}from"./chunks/ui-components-DwtaxXwl.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";
1
+ export{fk as ACCEPT_RECOMMENDATION_DESCRIPTION,c4 as ACTION_CATEGORIES,bx as ACTION_OPTIONS,lL as ACTION_TYPE_TO_CATEGORY,lM as ALL_LANGUAGES_WILDCARD,lN as ALL_SOURCES,ff as APPLY_VIA_GITOPS_DESCRIPTION,fh as APPLY_VIA_UI_DESCRIPTION,fl as BTN_ACCEPT,dg as BTN_ADD_CONDITION,e2 as BTN_ADD_IDENTITY_DIMENSION,lO as BTN_ADD_OVERRIDE,j8 as BTN_ADD_OVERRIDE_POLICY,dt as BTN_ADD_SELECTION,fA as BTN_CANCEL,fH as BTN_CONTINUE_EDITING,jO as BTN_CREATE_FIRST_RULE,d0 as BTN_CREATE_GUARDRAIL,ei as BTN_CREATE_OVERRIDE_POLICY,f8 as BTN_CREATE_RULE,cZ as BTN_DELETE_GUARDRAIL,lP as BTN_DELETE_OVERRIDE,dh as BTN_DELETE_POLICY,fD as BTN_DELETE_RULE,c_ as BTN_DISCARD_CHANGES,fm as BTN_DISMISS,fu as BTN_DOCS,ad as BTN_EDIT_AUTO_RULE,fC as BTN_EDIT_RULE,e6 as BTN_KEEP_TRANSACTIONS,e5 as BTN_RESET_TRANSACTIONS,fv as BTN_RESTORE,fR as BTN_SAVE,c$ as BTN_SAVE_CHANGES,fB as BTN_SAVE_RULE,e4 as BTN_SAVE_SETTINGS,o as BUTTON_TEXTS,fE as CATEGORY_DESCRIPTIONS,b0 as CATEGORY_LABELS,fG as CATEGORY_TITLES,bY as CLASS_LABELS,de as CONDITION_TYPE_OPTIONS,lQ as CREATE_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,lR as CREATE_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,lS as CREATE_NOISY_AUTO_RULE_DRAWER_TITLE,bl as DEFAULT_CLUSTER_ID,er as DEFAULT_CLUSTER_NAME,jJ as DEFAULT_DATA_STREAM_NAME,bZ as DEFAULT_IDENTITY_DIMENSIONS,cx as DESC_ADOPT_ENFORCE,cz as DESC_ADOPT_SUGGEST,j0 as DESC_ANOMALY_DETECTION_POLICIES,cJ as DESC_CALLEES,cL as DESC_CALLEES_EXTRA,cC as DESC_CALLERS,cF as DESC_CALLERS_EXTRA,eh as DESC_CHOOSE_DETECTION_OVERRIDE_SCOPE,dk as DESC_CHOOSE_LEARNING_OVERRIDE_SCOPE,iY as DESC_COMING_SOON,as as DESC_DURATION,cP as DESC_EGRESS,cS as DESC_EGRESS_EXTRA,lT as DESC_ERRORS,e7 as DESC_IDENTITY_CHANGED,j2 as DESC_LEARNING_POLICIES,cH as DESC_NO_CALLEES,cA as DESC_NO_CALLERS,jc as DESC_NO_DEFAULT_DETECTION_POLICY,j3 as DESC_NO_DEFAULT_LEARNING_POLICY,jd as DESC_NO_DETECTION_OVERRIDES,cN as DESC_NO_EGRESS,ji as DESC_NO_GUARDRAILS,j6 as DESC_NO_LEARNING_OVERRIDES,cU as DESC_NO_TRANSACTIONS,av as DESC_OPERATION,j1 as DESC_PANEL_GUARDRAILS,lU as DESC_PERCENTAGE_HIGHLY_RELEVANT,cn as DESC_PERCENTAGE_NOISY,b1 as DESC_RULE_TYPE,ea as DESC_SIGNAL_WEIGHTS_LEGEND,a1 as DESC_SOURCE_SCOPE,cW as DESC_TRANSACTIONS,en as DESTINATION_CATEGORIES,jv as DISPLAY_LANGUAGES,p as DISPLAY_TITLES,cc as DOCS_BASE_URL,bC as DestinationCategoryTypes,fN as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_SUBTITLE,fO as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,fL as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_SUBTITLE,fM as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,fP as EDIT_NOISY_AUTO_RULE_DRAWER_SUBTITLE,fQ as EDIT_NOISY_AUTO_RULE_DRAWER_TITLE,fF as EDIT_TITLES,fy as EMPTY_SUBTITLE,fz as EMPTY_TITLE,aJ as EMPTY_VALUE,bp as ERROR_APPLY_RECOMMENDATION,c9 as EXTRACTION_FORMAT_COPY,c7 as EXTRACT_ATTRIBUTE_FORM,jR as FILTER_TYPE_ALL,bc as FORM_ALERTS,fi as GITOPS_OVERRIDE_WARNING,dU as HELPER_AUTO_TRANSACTION_GUARDRAIL,dR as HELPER_FLUSH_INTERVAL,dX as HELPER_IDENTITY_DIMENSIONS,d_ as HELPER_IDENTITY_DIMENSIONS_BAD,dZ as HELPER_IDENTITY_DIMENSIONS_GOOD,dy as HELPER_MAX_EXAMPLE_TRACES,dN as HELPER_MAX_MEMBERS_PER_BASELINE,dK as HELPER_MAX_TRANSACTIONS_IN_MEMORY,dB as HELPER_MIN_SAMPLING_INTERVAL,dG as HELPER_SAMPLE_TRACE_RETENTION,dQ as HINT_FLUSH_INTERVAL,e3 as HINT_IDENTITY_DIMENSIONS,dF as HINT_SAMPLE_TRACE_RETENTION,fn as INSTALLATION_METHOD_DESCRIPTION,b$ as INSTRUMENTATION_RULE_OPTIONS,fe as LABEL_APPLY_VIA_GITOPS,fg as LABEL_APPLY_VIA_UI,jh as LABEL_AUTO,dV as LABEL_AUTO_TRANSACTION_GUARDRAIL,eb as LABEL_BASE_WEIGHT,fs as LABEL_BENEFITS,dn as LABEL_CHOOSE_OVERRIDE_TYPE,db as LABEL_COMBINE,iZ as LABEL_COMING_SOON,lV as LABEL_CONDITION_MIN_DURATION,lW as LABEL_CONDITION_MIN_OBSERVATIONS,lX as LABEL_CONDITION_STABLE_DURATION,lY as LABEL_CONDITION_STABLE_OBSERVATIONS,ft as LABEL_CONSIDERATIONS,da as LABEL_CURRENTLY,eg as LABEL_CUSTOMIZE_SIGNAL_WEIGHTS,at as LABEL_CUSTOM_DURATION,cr as LABEL_CUSTOM_PERCENTAGE,cq as LABEL_DISABLED,f7 as LABEL_DISABLED_RULE,aT as LABEL_DROP_ALL,ck as LABEL_DROP_AT_MOST,cp as LABEL_ENABLED,fj as LABEL_ENABLE_RECOMMENDATION,jf as LABEL_ENFORCE,di as LABEL_FALLBACK_NOTE,dS as LABEL_FLUSH_INTERVAL,d8 as LABEL_GLOBAL,aB as LABEL_HTTP_ROUTE,aD as LABEL_HTTP_ROUTE_PREFIX,d$ as LABEL_IDENTITY_EMPTY,e0 as LABEL_IDENTITY_ENABLED,aG as LABEL_KAFKA_TOPIC,aU as LABEL_KEEP_ALL,aQ as LABEL_KEEP_AT_LEAST,aR as LABEL_KEEP_AT_MOST,aP as LABEL_KEEP_PERCENTAGE,ar as LABEL_KEEP_TRACES_DURATION,ap as LABEL_KEEP_TRACES_ERRORS,dz as LABEL_MAX_EXAMPLE_TRACES,dO as LABEL_MAX_MEMBERS_PER_BASELINE,dL as LABEL_MAX_TRANSACTIONS_IN_MEMORY,aF as LABEL_METHOD,dd as LABEL_MIN_MATCHES,dC as LABEL_MIN_SAMPLING_INTERVAL,lZ as LABEL_MODE_ALL,l_ as LABEL_MODE_ALL_AND,l$ as LABEL_MODE_ANY,m0 as LABEL_MODE_ANY_OR,bU as LABEL_MODE_K_OF,m1 as LABEL_MODE_K_OF_N,ee as LABEL_NAME,cu as LABEL_NAMESPACE,aY as LABEL_NOTE,ae as LABEL_NO_PREVIEW,aI as LABEL_OPERATION_TYPE,d6 as LABEL_OVERRIDE_TYPE_SERVICE,d7 as LABEL_OVERRIDE_TYPE_TRANSACTION,df as LABEL_PROMOTES_WHEN,bK as LABEL_RISK_LEVEL_CRITICAL,bJ as LABEL_RISK_LEVEL_HIGH,bH as LABEL_RISK_LEVEL_LOW,bI as LABEL_RISK_LEVEL_MEDIUM,ed as LABEL_RISK_POINTS,m2 as LABEL_RULE_DISABLED,m3 as LABEL_RULE_ENABLED,aW as LABEL_RULE_NAME,aX as LABEL_RULE_TYPE,aS as LABEL_SAMPLE,dH as LABEL_SAMPLE_TRACE_RETENTION,jl as LABEL_SELECT_A_GUARDRAIL,ja as LABEL_SELECT_A_POLICY,dl as LABEL_SELECT_DEVIATION_CLASS,dp as LABEL_SELECT_SERVICE,dq as LABEL_SELECT_TRANSACTION,ax as LABEL_SERVER_ADDRESS,cv as LABEL_SERVICE,jg as LABEL_SUGGEST,du as LABEL_SYSTEM_UNAVAILABLE,aA as LABEL_TEMPLATED_PATH,aC as LABEL_TEMPLATED_PATH_PREFIX,ef as LABEL_TRIGGER_RISK_LEVEL,d4 as LABEL_UNIT_DAYS,d3 as LABEL_UNIT_HOURS,d2 as LABEL_UNIT_MINUTES,fp as LABEL_VIA_GITOPS,fo as LABEL_VIA_UI,eY as LANGUAGE_OPTIONS,b_ as MAX_ENABLED_IDENTITY_DIMENSIONS,d9 as MODE_BADGE_LABELS,d5 as MODE_OPTIONS,b4 as MONITORS_OPTIONS,M as NOTE_ENTIRE_CLUSTER,dv as NOTE_EVIDENCE_SAMPLES,Z as NOTE_SOURCE_SCOPE_LOGIC,fq as NOT_APPLICABLE_SUMMARY,m4 as OPENTELEMETRY_EBPF_DISTRO_OPTION,aL as OPERATION_ALL,aK as OPERATION_HTTP_CLIENT,aH as OPERATION_HTTP_SERVER,aM as OPERATION_KAFKA_CONSUMER,aN as OPERATION_KAFKA_PRODUCER,bR as ORIGIN_AUTO_TRANSACTION_GUARDRAIL,eX as OTEL_DISTRO_NAME_OPTIONS,aO as PERCENTAGE_SECTION_DESCRIPTIONS,cR as PLACEHOLDER_EGRESS,e1 as PLACEHOLDER_IDENTITY_KEY,a_ as PLACEHOLDER_NOTE,az as PLACEHOLDER_ROUTE,aZ as PLACEHOLDER_RULE_NAME,a4 as PLACEHOLDER_SEARCH_SOURCE,dm as PLACEHOLDER_SELECT_DEVIATION_CLASS,dr as PLACEHOLDER_SELECT_SERVICE,ds as PLACEHOLDER_SELECT_TRANSACTION,aw as PLACEHOLDER_SERVER_ADDRESS,cE as PLACEHOLDER_SERVICE_NAME,eJ as PROCESS_ATTRIBUTE_NAMES,fw as RECOMMENDATIONS_DRAWER_SUBTITLE,fx as RECOMMENDATIONS_DRAWER_TITLE,c as REGEX_TESTER_DRAWER,bO as RULE_KEY_CALLEES,bN as RULE_KEY_CALLERS,bP as RULE_KEY_EGRESS,bQ as RULE_KEY_TRANSACTIONS,co as SAMPLING_AUTO_RULE_TITLE,jV as SAMPLING_BTN_CREATE_RULE,jT as SAMPLING_BTN_DOCS,jU as SAMPLING_BTN_REFRESH,cm as SAMPLING_COST_REDUCTION_AUTO_RULE_TITLE,fI as SAMPLING_DEFAULT_CONFIRM_DESCRIPTION,fK as SAMPLING_DEFAULT_CONFIRM_PREVIEW_LABEL,fJ as SAMPLING_DEFAULT_CONFIRM_TITLE,jY as SAMPLING_DELETE_MODAL_APPROVE,jZ as SAMPLING_DELETE_MODAL_CANCEL,j_ as SAMPLING_DELETE_MODAL_DESCRIPTION,j$ as SAMPLING_DELETE_MODAL_TITLE,fS as SAMPLING_DRAWER_WIDTH,jS as SAMPLING_DUPLICATE_RULE_WARNING,cj as SAMPLING_HIGHLY_RELEVANT_AUTO_RULE_TITLE,ic as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_1,id as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_2,ie as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_3,ig as SAMPLING_ONBOARDING_ADVANCED_LEFT_TITLE,ih as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_1,ii as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_2,ij as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_3,ik as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_4,il as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_5,im as SAMPLING_ONBOARDING_ADVANCED_RIGHT_TITLE,ip as SAMPLING_ONBOARDING_ADVANCED_SUBTITLE,io as SAMPLING_ONBOARDING_ADVANCED_TITLE,iG as SAMPLING_ONBOARDING_AMBIENT_LABEL,hK as SAMPLING_ONBOARDING_BTN_GO_TO,hv as SAMPLING_ONBOARDING_BTN_NEXT,ib as SAMPLING_ONBOARDING_BTN_READ_MORE,hV as SAMPLING_ONBOARDING_BTN_SKIP,hW as SAMPLING_ONBOARDING_BTN_START,iq as SAMPLING_ONBOARDING_COMMON_BANNER,iF as SAMPLING_ONBOARDING_COMMON_RULES_SECTION,it as SAMPLING_ONBOARDING_DROP_DESCRIPTION,is as SAMPLING_ONBOARDING_DROP_SUBTITLE,ir as SAMPLING_ONBOARDING_DROP_TITLE,iw as SAMPLING_ONBOARDING_ERROR_PRESET_NAME,iv as SAMPLING_ONBOARDING_ERROR_PRESET_TOGGLE_LABEL,iz as SAMPLING_ONBOARDING_KEEP_DESCRIPTION,iy as SAMPLING_ONBOARDING_KEEP_SUBTITLE,ix as SAMPLING_ONBOARDING_KEEP_TITLE,iA as SAMPLING_ONBOARDING_KEEP_USE_CASE_1,iB as SAMPLING_ONBOARDING_KEEP_USE_CASE_2,iC as SAMPLING_ONBOARDING_KEEP_USE_CASE_3,iD as SAMPLING_ONBOARDING_KEEP_USE_CASE_4,iE as SAMPLING_ONBOARDING_KEEP_USE_CASE_5,hC as SAMPLING_ONBOARDING_NOISY_BANNER,hy as SAMPLING_ONBOARDING_NOISY_DESCRIPTION,hB as SAMPLING_ONBOARDING_NOISY_PRESET_NAME,hz as SAMPLING_ONBOARDING_NOISY_PRESET_SECTION,hA as SAMPLING_ONBOARDING_NOISY_PRESET_TOGGLE_LABEL,hx as SAMPLING_ONBOARDING_NOISY_SUBTITLE,hw as SAMPLING_ONBOARDING_NOISY_TITLE,iu as SAMPLING_ONBOARDING_PRESET_RULES_SECTION,hu as SAMPLING_ONBOARDING_RECOMMENDED_BADGE,i8 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_BADGE,i9 as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_DESC,ia as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_NAME,i5 as SAMPLING_ONBOARDING_STRATEGY_DROP_BADGE,i3 as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_1,i4 as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_2,i6 as SAMPLING_ONBOARDING_STRATEGY_DROP_DESC,i7 as SAMPLING_ONBOARDING_STRATEGY_DROP_NAME,i0 as SAMPLING_ONBOARDING_STRATEGY_KEEP_BADGE,h_ as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_1,h$ as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_2,i1 as SAMPLING_ONBOARDING_STRATEGY_KEEP_DESC,i2 as SAMPLING_ONBOARDING_STRATEGY_KEEP_NAME,hZ as SAMPLING_ONBOARDING_STRATEGY_KEEP_WARNING,hY as SAMPLING_ONBOARDING_STRATEGY_SUBTITLE,hX as SAMPLING_ONBOARDING_STRATEGY_TITLE,hH as SAMPLING_ONBOARDING_SUCCESS_BULLET_1,hI as SAMPLING_ONBOARDING_SUCCESS_BULLET_2,hJ as SAMPLING_ONBOARDING_SUCCESS_BULLET_3,hG as SAMPLING_ONBOARDING_SUCCESS_INTRO,hF as SAMPLING_ONBOARDING_SUCCESS_SUBTITLE,hE as SAMPLING_ONBOARDING_SUCCESS_TITLE,hU as SAMPLING_ONBOARDING_WELCOME_BANNER,hN as SAMPLING_ONBOARDING_WELCOME_INTRO,hO as SAMPLING_ONBOARDING_WELCOME_STAGE_1_DESC,hP as SAMPLING_ONBOARDING_WELCOME_STAGE_1_TITLE,hQ as SAMPLING_ONBOARDING_WELCOME_STAGE_2_DESC,hR as SAMPLING_ONBOARDING_WELCOME_STAGE_2_TITLE,hS as SAMPLING_ONBOARDING_WELCOME_STAGE_3_DESC,hT as SAMPLING_ONBOARDING_WELCOME_STAGE_3_TITLE,hM as SAMPLING_ONBOARDING_WELCOME_SUBTITLE,hL as SAMPLING_ONBOARDING_WELCOME_TITLE,jW as SAMPLING_PAGE_DESCRIPTION,jX as SAMPLING_PAGE_TITLE,a7 as SCOPE_AND_LABEL,a6 as SCOPE_GROUP_ANY_OF_HINT,Y as SCOPE_GROUP_LANGUAGES_TITLE,X as SCOPE_GROUP_NAMESPACES_TITLE,O as SCOPE_GROUP_SOURCES_TITLE,m5 as SECTION_APPLIED,m6 as SECTION_DISMISSED,aq as SECTION_DURATION,ao as SECTION_ERRORS,cl as SECTION_KEEP_PERCENTAGE,m7 as SECTION_NOT_APPLICABLE,au as SECTION_OPERATION,m8 as SECTION_RECOMMENDED,b2 as SECTION_SAMPLING_PREVIEW,a8 as SECTION_SOURCE_SCOPE,fr as SECTION_TITLES,ju as STORAGE_KEYS,bq as SUCCESS_APPLIED,br as SUCCESS_DISMISSED,bs as SUCCESS_RESTORED,cw as TITLE_ADOPT_ENFORCE,cy as TITLE_ADOPT_SUGGEST,je as TITLE_ANOMALY_DETECTION_POLICIES,cK as TITLE_CALLEES,cM as TITLE_CALLEES_EXTRA,cD as TITLE_CALLERS,cG as TITLE_CALLERS_EXTRA,dj as TITLE_CHOOSE_OVERRIDE_SCOPE,jk as TITLE_CREATED_GUARDRAILS,ec as TITLE_DANGEROUS_SUBCASES,dP as TITLE_DATABASE_WRITEBACK,j5 as TITLE_DEFAULT_POLICY,cs as TITLE_EDIT_GUARDRAIL,cQ as TITLE_EGRESS,cT as TITLE_EGRESS_EXTRA,jm as TITLE_GUARDRAILS,e8 as TITLE_IDENTITY_CHANGED,ct as TITLE_INSPECT_SERVICE,dw as TITLE_LEARNING_EXAMPLES,jb as TITLE_LEARNING_POLICIES,dI as TITLE_MEMORY_LIMITS,cI as TITLE_NO_CALLEES,cB as TITLE_NO_CALLERS,j4 as TITLE_NO_DEFAULT_POLICY,cO as TITLE_NO_EGRESS,jj as TITLE_NO_GUARDRAILS,j7 as TITLE_NO_OVERRIDES,jN as TITLE_NO_RESULTS,jP as TITLE_NO_RULES,cV as TITLE_NO_TRANSACTIONS,j9 as TITLE_OVERRIDES,dD as TITLE_RETENTION,cX as TITLE_TRANSACTIONS,dT as TITLE_TRANSACTION_GUARDRAILS,dW as TITLE_TRANSACTION_IDENTITY,m9 as TOKEN_ABOUT_TO_EXPIRE,a$ as TOOLTIP_NOTE,dE as UNIT_DAYS,dM as UNIT_MEMBERS,dA as UNIT_SECONDS,dx as UNIT_TRACES,dJ as UNIT_TRANSACTIONS,U as UNKNOWN_SOURCE_LABEL,aV as UNNAMED_RULE,hl as URL_TEMPLATIZATION_ACTION_FIELD_LABEL,ma as URL_TEMPLATIZATION_ACTION_NAME_LABEL,kx as URL_TEMPLATIZATION_ACTION_SUMMARY,mb as URL_TEMPLATIZATION_ADD_EXISTING_GROUP,mc as URL_TEMPLATIZATION_ADD_NEW_GROUP,md as URL_TEMPLATIZATION_ADD_TEMPLATE_TO_SCOPE,g6 as URL_TEMPLATIZATION_ADD_TO_EXISTING_ACTION,me as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION,mf as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION_DESC,gd as URL_TEMPLATIZATION_ADVANCED_DEFAULT_SUMMARY,kl as URL_TEMPLATIZATION_ADVANCED_LABEL,fW as URL_TEMPLATIZATION_ADVANCED_NEW_ACTION_SUMMARY,fX as URL_TEMPLATIZATION_ADVANCED_SELECT_ACTION_SUMMARY,ge as URL_TEMPLATIZATION_ADVANCED_SETTINGS,km as URL_TEMPLATIZATION_ADVANCED_SUMMARY,go as URL_TEMPLATIZATION_APPLIES_TO_ENTIRE_CLUSTER,gs as URL_TEMPLATIZATION_APPLIES_TO_LANGUAGES,gp as URL_TEMPLATIZATION_APPLIES_TO_MIXED_SCOPE,gr as URL_TEMPLATIZATION_APPLIES_TO_NAMESPACES,gq as URL_TEMPLATIZATION_APPLIES_TO_SOURCES,kj as URL_TEMPLATIZATION_AUTO_CARD_ACTIVE_BADGE,mg as URL_TEMPLATIZATION_AUTO_CARD_BTN_ADD_DISABLED,mh as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_EMPTY,mi as URL_TEMPLATIZATION_AUTO_CARD_DISABLED_SECTION_TITLE,mj as URL_TEMPLATIZATION_AUTO_CARD_HINT,mk as URL_TEMPLATIZATION_AUTO_CARD_STAT_DISABLED,ml as URL_TEMPLATIZATION_AUTO_CARD_STAT_NONE,mm as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE,mn as URL_TEMPLATIZATION_AUTO_CARD_STAT_SCOPE_VALUE,mo as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES,mp as URL_TEMPLATIZATION_AUTO_CARD_STAT_STATUS_CODES_ALL,kk as URL_TEMPLATIZATION_AUTO_CARD_SUBTITLE,ki as URL_TEMPLATIZATION_AUTO_CARD_TITLE,h1 as URL_TEMPLATIZATION_BADGE_ADVANCED,gn as URL_TEMPLATIZATION_BADGE_MANAGED_EXTERNALLY,gm as URL_TEMPLATIZATION_BADGE_MANAGED_IN_UI,mq as URL_TEMPLATIZATION_BADGE_UI,k6 as URL_TEMPLATIZATION_BTN_ADD_DISABLED_SCOPE,gO as URL_TEMPLATIZATION_BTN_ADD_RULE,kc as URL_TEMPLATIZATION_BTN_ADD_SKIP_POLICY_SCOPE,mr as URL_TEMPLATIZATION_BTN_ADD_TEMPLATE,gy as URL_TEMPLATIZATION_BTN_BACK,gB as URL_TEMPLATIZATION_BTN_CANCEL,gz as URL_TEMPLATIZATION_BTN_CANCEL_WITHOUT_SAVING,hb as URL_TEMPLATIZATION_BTN_CLOSE,h8 as URL_TEMPLATIZATION_BTN_CONFIRM_DISABLE_SCOPE,kM as URL_TEMPLATIZATION_BTN_CREATE,ms as URL_TEMPLATIZATION_BTN_CREATE_GROUP,ky as URL_TEMPLATIZATION_BTN_CREATE_TEMPLATE_GROUP,k9 as URL_TEMPLATIZATION_BTN_DELETE_DISABLED_SCOPE,gx as URL_TEMPLATIZATION_BTN_DELETE_SCOPE,kf as URL_TEMPLATIZATION_BTN_DELETE_SKIP_POLICY,kL as URL_TEMPLATIZATION_BTN_DOCS,hc as URL_TEMPLATIZATION_BTN_EDIT,hm as URL_TEMPLATIZATION_BTN_EDIT_GROUP,mt as URL_TEMPLATIZATION_BTN_ENABLE_DEFAULT,gC as URL_TEMPLATIZATION_BTN_NEXT,gA as URL_TEMPLATIZATION_BTN_SAVE,mu as URL_TEMPLATIZATION_BTN_TEST_URL,mv as URL_TEMPLATIZATION_CHOOSE_DESTINATION,mw as URL_TEMPLATIZATION_CHOOSE_DESTINATION_DESC,h9 as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_DESCRIPTION,ha as URL_TEMPLATIZATION_CONFIRM_DISABLE_SCOPE_TARGET,mx as URL_TEMPLATIZATION_CREATE_GROUP_FOR_SCOPE,fU as URL_TEMPLATIZATION_CREATE_NEW_ACTION,my as URL_TEMPLATIZATION_CREATE_NEW_ACTION_DESC,fV as URL_TEMPLATIZATION_CREATE_NEW_ACTION_OPTION_ID,ga as URL_TEMPLATIZATION_CREATE_SEPARATE_ACTION,g9 as URL_TEMPLATIZATION_CREATE_SEPARATE_ACTION_DESC,gt as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE,gw as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE_TO_ACTION,gv as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE,gu as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE_ADD_TEMPLATES,mz as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE_NEW_SCOPE,mA as URL_TEMPLATIZATION_CUSTOM_EMPTY_SUBTITLE,mB as URL_TEMPLATIZATION_CUSTOM_EMPTY_TITLE,mC as URL_TEMPLATIZATION_CUSTOM_SECTION_SUBTITLE,fT as URL_TEMPLATIZATION_DEFAULT_ACTION_NAME,mD as URL_TEMPLATIZATION_DEFAULT_ACTION_OPTION_ID,mE as URL_TEMPLATIZATION_DEFAULT_CONFIGURED_PLACEHOLDER,mF as URL_TEMPLATIZATION_DEFAULT_DISABLED_SCOPES_TITLE,mG as URL_TEMPLATIZATION_DEFAULT_EMPTY_SUBTITLE,mH as URL_TEMPLATIZATION_DEFAULT_EMPTY_TITLE,gS as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_SUBTITLE,gW as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_TITLE,mI as URL_TEMPLATIZATION_DEFAULT_SECTION_SUBTITLE,mJ as URL_TEMPLATIZATION_DEFAULT_SETTINGS,gZ as URL_TEMPLATIZATION_DEFAULT_STATUS_DISABLED,mK as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED,mL as URL_TEMPLATIZATION_DEFAULT_STATUS_ENABLED_GLOBALLY,mM as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_DISABLED,mN as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_ENABLED_GLOBALLY,mO as URL_TEMPLATIZATION_DEFAULT_STATUS_LINE_UNSET,mP as URL_TEMPLATIZATION_DEFAULT_STATUS_UNSET,ka as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_DESCRIPTION,kb as URL_TEMPLATIZATION_DELETE_DISABLED_SCOPE_TARGET,gH as URL_TEMPLATIZATION_DELETE_SCOPE_TARGET,kg as URL_TEMPLATIZATION_DELETE_SKIP_POLICY_DESCRIPTION,kh as URL_TEMPLATIZATION_DELETE_SKIP_POLICY_TARGET,hk as URL_TEMPLATIZATION_DESC_ACTION,gX as URL_TEMPLATIZATION_DESC_DEFAULT_TEMPLATIZATION,g_ as URL_TEMPLATIZATION_DESC_DISABLE_SCOPE_PARAGRAPHS,mQ as URL_TEMPLATIZATION_DESC_SKIP_POLICY,h3 as URL_TEMPLATIZATION_DESC_SKIP_POLICY_PARAGRAPHS,g2 as URL_TEMPLATIZATION_DESC_SOURCE_SCOPE,he as URL_TEMPLATIZATION_DESC_TEMPLATE,mR as URL_TEMPLATIZATION_DESTINATION_CLUSTER_HINT,g0 as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER,f$ as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_DESC,mS as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER_TOOLTIP,mT as URL_TEMPLATIZATION_DESTINATION_GROUP_HINT,g1 as URL_TEMPLATIZATION_DESTINATION_QUICK_START_BADGE,fZ as URL_TEMPLATIZATION_DESTINATION_SPECIFIC_SCOPE_DESC,f_ as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP,mU as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP_TOOLTIP,hi as URL_TEMPLATIZATION_DETAIL_DISPLAY_NAME,hh as URL_TEMPLATIZATION_DETAIL_ORIGIN,hj as URL_TEMPLATIZATION_DETAIL_RESOURCE_NAME,hg as URL_TEMPLATIZATION_DETAIL_SCOPE_DESC,hf as URL_TEMPLATIZATION_DETAIL_TEMPLATE,mV as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_COVERED,mW as URL_TEMPLATIZATION_DISABLED_SCOPES_BEHAVIOR_OFF,mX as URL_TEMPLATIZATION_DISABLED_SCOPES_BTN_ADD,mY as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_BEHAVIOR,mZ as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_SCOPE,m_ as URL_TEMPLATIZATION_DISABLED_SCOPES_COL_STATUS,m$ as URL_TEMPLATIZATION_DISABLED_SCOPES_COUNT,n0 as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_SUBTITLE,n1 as URL_TEMPLATIZATION_DISABLED_SCOPES_EMPTY_TITLE,n2 as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_DISABLED,n3 as URL_TEMPLATIZATION_DISABLED_SCOPES_STATUS_REDUNDANT,n4 as URL_TEMPLATIZATION_DISABLED_SCOPES_SUBTITLE,n5 as URL_TEMPLATIZATION_DISABLED_SCOPES_SUMMARY,k7 as URL_TEMPLATIZATION_DISABLED_SCOPES_TITLE,gT as URL_TEMPLATIZATION_DISABLE_SCOPE_DRAWER_TITLE,kK as URL_TEMPLATIZATION_DOCS_URL,gD as URL_TEMPLATIZATION_DRAWER_WIDTH,gV as URL_TEMPLATIZATION_EDIT_DEFAULT_RULE_DRAWER_TITLE,gN as URL_TEMPLATIZATION_ERROR_INVALID_STATUS_CODES,n6 as URL_TEMPLATIZATION_EXISTING_TEMPLATING_SCOPE,gQ as URL_TEMPLATIZATION_FOOTER_IMMEDIATE_EFFECT,n7 as URL_TEMPLATIZATION_FOOTER_NO_TEMPLATE_CHANGES,gP as URL_TEMPLATIZATION_FOOTER_SAVE_EFFECT,h6 as URL_TEMPLATIZATION_HELPER_STATUS_CODES,g7 as URL_TEMPLATIZATION_MATCHING_GROUP_COUNT,n8 as URL_TEMPLATIZATION_MATCHING_GROUP_LABEL,n9 as URL_TEMPLATIZATION_MATCH_FOUND,na as URL_TEMPLATIZATION_MATCH_FOUND_HINT,nb as URL_TEMPLATIZATION_NEW_ACTION_HINT,gb as URL_TEMPLATIZATION_NEW_ACTION_NAME_LABEL,gc as URL_TEMPLATIZATION_NEW_ACTION_PLACEHOLDER,nc as URL_TEMPLATIZATION_NEW_GROUP_DEFAULT_HINT,nd as URL_TEMPLATIZATION_NOTE_ENTIRE_CLUSTER,gM as URL_TEMPLATIZATION_NO_MATCH,ne as URL_TEMPLATIZATION_NO_MATCH_HELP,nf as URL_TEMPLATIZATION_NO_MATCH_HINT,gj as URL_TEMPLATIZATION_ODIGOS_ACTION_CAPTION,kp as URL_TEMPLATIZATION_ONBOARDING_APPLIES_TO,ko as URL_TEMPLATIZATION_ONBOARDING_AUTO_DESCRIPTION,kn as URL_TEMPLATIZATION_ONBOARDING_AUTO_TITLE,kC as URL_TEMPLATIZATION_ONBOARDING_BTN_CREATE_CUSTOM,kr as URL_TEMPLATIZATION_ONBOARDING_BTN_REVIEW_ENABLE,kB as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_DESCRIPTION,kA as URL_TEMPLATIZATION_ONBOARDING_CUSTOM_TITLE,kJ as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER,kG as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_AFTER_LABEL,kI as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE,kF as URL_TEMPLATIZATION_ONBOARDING_EXAMPLE_BEFORE_LABEL,kH as URL_TEMPLATIZATION_ONBOARDING_LEARN_MORE,g8 as URL_TEMPLATIZATION_ONBOARDING_RECOMMENDED_BADGE,kq as URL_TEMPLATIZATION_ONBOARDING_REVERSIBLE,kE as URL_TEMPLATIZATION_ONBOARDING_SUBTITLE,kD as URL_TEMPLATIZATION_ONBOARDING_TITLE,kN as URL_TEMPLATIZATION_PAGE_DESCRIPTION,kO as URL_TEMPLATIZATION_PAGE_TITLE,h7 as URL_TEMPLATIZATION_PLACEHOLDER_STATUS_CODES,gG as URL_TEMPLATIZATION_PLACEHOLDER_TEMPLATE,ng as URL_TEMPLATIZATION_RESULT,g5 as URL_TEMPLATIZATION_SCOPE_ALREADY_USED,g4 as URL_TEMPLATIZATION_SCOPE_ALREADY_USED_DESC,k4 as URL_TEMPLATIZATION_SCOPE_AND,gE as URL_TEMPLATIZATION_SCOPE_CLUSTER_HINT,k1 as URL_TEMPLATIZATION_SCOPE_ENTIRE_CLUSTER,k2 as URL_TEMPLATIZATION_SCOPE_LANGUAGE,k3 as URL_TEMPLATIZATION_SCOPE_NAMESPACE,k5 as URL_TEMPLATIZATION_SCOPE_SOURCE,nh as URL_TEMPLATIZATION_SEARCH_GROUPS_PLACEHOLDER,ks as URL_TEMPLATIZATION_SECTION_CUSTOM,ni as URL_TEMPLATIZATION_SECTION_DEFAULT,gY as URL_TEMPLATIZATION_SECTION_DEFAULT_TEMPLATIZATION,ho as URL_TEMPLATIZATION_SECTION_OTHER_TEMPLATES,hn as URL_TEMPLATIZATION_SECTION_OTHER_TEMPLATES_DESC,g3 as URL_TEMPLATIZATION_SECTION_SCOPE,h2 as URL_TEMPLATIZATION_SECTION_SKIP_POLICY,nj as URL_TEMPLATIZATION_SECTION_SOURCE_SCOPE,gF as URL_TEMPLATIZATION_SECTION_TEMPLATES,kz as URL_TEMPLATIZATION_SECTION_TEMPLATE_GROUPS,nk as URL_TEMPLATIZATION_SELECTED_GROUP,gi as URL_TEMPLATIZATION_SELECT_ACTION,gh as URL_TEMPLATIZATION_SELECT_ACTION_DESC,nl as URL_TEMPLATIZATION_SELECT_WHERE_TO_ADD,nm as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_SUBTITLE,nn as URL_TEMPLATIZATION_SKIP_POLICIES_EMPTY_TITLE,kd as URL_TEMPLATIZATION_SKIP_POLICIES_TITLE,gR as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_SUBTITLE,gU as URL_TEMPLATIZATION_SKIP_POLICY_DRAWER_TITLE,no as URL_TEMPLATIZATION_SKIP_POLICY_STATUS_LINE_DISABLED,gL as URL_TEMPLATIZATION_TEMPLATED_URL_PATH,np as URL_TEMPLATIZATION_TEMPLATING_SCOPE_CAPTION,h0 as URL_TEMPLATIZATION_TOGGLE_ENABLE_TEMPLATIZATION,h4 as URL_TEMPLATIZATION_TOGGLE_SKIP_NON_2XX,h5 as URL_TEMPLATIZATION_TOGGLE_SKIP_STATUS_CODES,gl as URL_TEMPLATIZATION_TOOLTIP_MANAGED_EXTERNALLY,gk as URL_TEMPLATIZATION_TOOLTIP_MANAGED_IN_UI,gJ as URL_TEMPLATIZATION_TRY_A_URL,gK as URL_TEMPLATIZATION_TRY_A_URL_PLACEHOLDER,gg as URL_TEMPLATIZATION_USE_DEFAULT_ACTION,gf as URL_TEMPLATIZATION_USE_DEFAULT_ACTION_DESC,nq as URL_TEMPLATIZATION_VIEW_ACTION_SETTINGS,kt as URL_TEMPLATIZATION_VIEW_BY,hd as URL_TEMPLATIZATION_VIEW_DRAWER_TITLE,ku as URL_TEMPLATIZATION_VIEW_GROUPS,kw as URL_TEMPLATIZATION_VIEW_LIST,kv as URL_TEMPLATIZATION_VIEW_TREE,fY as URL_TEMPLATIZATION_WHERE_SHOULD_APPLY,eE as canAgentReportPodStartTime,k8 as formatUrlTemplatizationDefaultStatusLineEnabled,gI as formatUrlTemplatizationDeleteScopeDescription,nr as formatUrlTemplatizationSaveFooter,ke as formatUrlTemplatizationSkipPolicyStatusLine,bL as getFireSummary,jQ as getNoResultsSubTitle,f3 as getSourceConditionsForPanel,ej as getSupportedActionOptions,ch as getSupportedLanguageIcon,ci as getSupportedLanguageLabel,ns as isActionSupportedOnPlatform,nt as isActionSupportedOnVersion,bW as isDurationConditionType,nu as isObservationsConditionType,ce as isRuleSourceScopeSupported,bm as mapActionTypesToOptions,bu as mapRuleTypesToOptions,cf as normalizeSupportedLanguagesForDisplay,ep as ruleTypeRequiresConfiguration,f2 as shouldShowSourceConditionsPanel,nv as supportsAllLanguages,cg as toScopeSupportedLanguages}from"./chunks/ui-components-ChTo9ZLp.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";
@@ -17,7 +17,7 @@ export interface FlameGraphCanvasProps {
17
17
  /** Symbol-name predicate driven by the table's column filters. Frames whose name returns false are dropped from the layout entirely (not just dimmed), so the remaining stacks rise to fill the space. */
18
18
  shouldKeepName?: (name: string) => boolean;
19
19
  minHostHeight?: number;
20
- /** Notifies the parent whenever the user toggles fullscreen, so the parent can react (e.g. widen the surrounding drawer). */
20
+ /** Notifies the parent whenever the user toggles fullscreen. */
21
21
  onFullscreenChange?: (isFullscreen: boolean) => void;
22
22
  profilingSlots: ProfilingSlots | null;
23
23
  /** Fired with the symbol name whenever a frame is clicked (in addition to zooming), so the parent can scroll the symbol table to it (PLAT-1246). */
@@ -2,7 +2,5 @@ import { type FC } from 'react';
2
2
  import { type Workload } from '../../../../types';
3
3
  export interface ProfilingProps {
4
4
  source: Workload;
5
- /** Forwarded from the inner FlameGraphCanvas; lets the embedding container (e.g. SourceDrawer) react to fullscreen toggles. */
6
- onFlameFullscreenChange?: (isFullscreen: boolean) => void;
7
5
  }
8
6
  export declare const Profiling: FC<ProfilingProps>;
@@ -1,15 +1,23 @@
1
- import type { TraceViewRow } from '../../../../../../components/trace-view';
2
1
  import type { InsightsParsedOtlpTrace } from '../../../../../../functions';
2
+ import type { TraceViewRow } from '../../../../../../components/trace-view';
3
+ /**
4
+ * Span attribute keys that differ on almost every trace without carrying meaning.
5
+ * They still render in the span details, but never get a diff marker and never
6
+ * contribute to the field change count. A `*` in a dot-separated segment matches
7
+ * any value in that position (e.g. `arg.*` matches `arg.0` and `arg.1`).
8
+ */
9
+ export declare const NOISY_ATTRIBUTE_KEYS: string[];
3
10
  export interface AnomalyTraceCompareResult {
4
11
  baselineRows: TraceViewRow[];
5
12
  observedRows: TraceViewRow[];
6
13
  newSpanCount: number;
7
14
  timingChangeCount: number;
15
+ fieldChangeCount: number;
8
16
  observedDurationLabel?: string | null;
9
17
  error?: string | null;
10
18
  }
11
19
  /**
12
20
  * Map parsed baseline + anomaly OTLP spans into paired TraceView rows for the
13
- * investigate-anomaly compare waterfall (new / timing / placeholder variants).
21
+ * investigate-anomaly compare waterfall (new / removed / timing / placeholder variants).
14
22
  */
15
23
  export declare const buildAnomalyTraceCompareRows: (baselineTrace?: InsightsParsedOtlpTrace | null, anomalyTrace?: InsightsParsedOtlpTrace | null) => AnomalyTraceCompareResult;
@@ -1,6 +1,6 @@
1
1
  import { type FC } from 'react';
2
- import { InsightsDrawerType } from '../../insights-context';
2
+ import { type FindingDrawerType } from '../../insights-context';
3
3
  export interface FindingDrawerProps {
4
- type: Omit<InsightsDrawerType, InsightsDrawerType.Transaction>;
4
+ type: FindingDrawerType;
5
5
  }
6
6
  export declare const FindingDrawer: FC<FindingDrawerProps>;
@@ -4,21 +4,26 @@ export declare enum InsightsDrawerType {
4
4
  Violation = "violation",
5
5
  Transaction = "transaction"
6
6
  }
7
- type DrawerIsOpenFor = {
8
- type: InsightsDrawerType | null;
7
+ export type FindingDrawerType = InsightsDrawerType.Anomaly | InsightsDrawerType.Violation;
8
+ type FindingDrawerIsOpenFor = {
9
+ type: FindingDrawerType | null;
9
10
  id: string | null;
10
11
  };
11
12
  export type OpenInsightsDrawer = (type: InsightsDrawerType, id: string) => void;
12
13
  export type CloseInsightsDrawer = () => void;
13
14
  export declare const InsightsContext: React.Context<{
14
- drawerIsOpenFor: DrawerIsOpenFor;
15
+ findingDrawer: FindingDrawerIsOpenFor;
16
+ transactionDrawerId: string | null;
15
17
  openDrawer: OpenInsightsDrawer;
16
- closeDrawer: CloseInsightsDrawer;
18
+ closeFindingDrawer: CloseInsightsDrawer;
19
+ closeTransactionDrawer: CloseInsightsDrawer;
17
20
  }>;
18
21
  export declare const InsightsContextProvider: ({ children }: PropsWithChildren) => React.JSX.Element;
19
22
  export declare const useInsightsContext: () => {
20
- drawerIsOpenFor: DrawerIsOpenFor;
23
+ findingDrawer: FindingDrawerIsOpenFor;
24
+ transactionDrawerId: string | null;
21
25
  openDrawer: OpenInsightsDrawer;
22
- closeDrawer: CloseInsightsDrawer;
26
+ closeFindingDrawer: CloseInsightsDrawer;
27
+ closeTransactionDrawer: CloseInsightsDrawer;
23
28
  };
24
29
  export {};