@odigos/ui-kit 0.0.287 → 0.0.289

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 (59) hide show
  1. package/.cursor/rules/frontend-workflow.mdc +27 -0
  2. package/.cursor/rules/ui-feedback-tables-forms.mdc +40 -0
  3. package/.cursor/rules/ui-implementation.mdc +21 -0
  4. package/.cursor/rules/ui-pages-and-drawers.mdc +34 -0
  5. package/.cursor/rules/ui-visual-language.mdc +27 -0
  6. package/CHANGELOG.md +30 -0
  7. package/lib/chunks/{helpers-CtkwQ3Wc.js → helpers-Ds7r-EIJ.js} +1 -1
  8. package/lib/chunks/index-DiYN36pr.js +351 -0
  9. package/lib/chunks/source-instrument-form-context-CBP9xXNN.js +5 -0
  10. package/lib/chunks/{ui-components-CjgsN17j.js → ui-components-Dvmqmy3G.js} +93 -84
  11. package/lib/components/table/types.d.ts +2 -2
  12. package/lib/components/trace-view/styled.d.ts +51 -34
  13. package/lib/components/trace-view/types.d.ts +4 -0
  14. package/lib/components.js +1 -1
  15. package/lib/constants/strings/index.d.ts +6 -0
  16. package/lib/constants.js +1 -1
  17. package/lib/containers/_drawers/edit-source-drawer/overview/instructions-card.d.ts +21 -0
  18. package/lib/containers/_modals/sampling-onboarding-modal/common/chrome.d.ts +14 -10
  19. package/lib/containers/_modals/sampling-onboarding-modal/common/section.d.ts +9 -3
  20. package/lib/containers/insights/findings/drawer/anomaly/risk-breakdown/helpers.d.ts +23 -0
  21. package/lib/containers/insights/findings/drawer/anomaly/risk-breakdown/index.d.ts +9 -0
  22. package/lib/containers/insights/operation-identity.d.ts +22 -0
  23. package/lib/containers/insights/overview/contained-table-and-heading/index.d.ts +2 -1
  24. package/lib/containers/insights/settings-and-configurations/panels/detection/create-override-panel.d.ts +1 -1
  25. package/lib/containers/insights/settings-and-configurations/panels/guardrails/constants.d.ts +6 -1
  26. package/lib/containers/insights/settings-and-configurations/panels/guardrails/facet-section.d.ts +1 -0
  27. package/lib/containers/insights/settings-and-configurations/panels/guardrails/mappers.d.ts +2 -0
  28. package/lib/containers/insights/settings-and-configurations/panels/learning/mappers.d.ts +2 -1
  29. package/lib/containers/insights/settings-and-configurations/panels/storage/layout.d.ts +12 -4
  30. package/lib/containers/insights/settings-and-configurations/panels/system/constants.d.ts +19 -1
  31. package/lib/containers/insights/transactions/helpers.d.ts +16 -3
  32. package/lib/containers.js +606 -478
  33. package/lib/contexts/odigos-api/capabilities.d.ts +2 -0
  34. package/lib/contexts/odigos-api/hooks/use-insights-api.d.ts +19 -2
  35. package/lib/contexts/odigos-api/hooks/use-sources-api.d.ts +10 -1
  36. package/lib/contexts/odigos-api/index.d.ts +1 -1
  37. package/lib/contexts/odigos-api/types.d.ts +48 -1
  38. package/lib/contexts.js +1 -1
  39. package/lib/functions.js +1 -1
  40. package/lib/hooks.js +1 -1
  41. package/lib/{containers/insights/findings/drawer/anomaly/anomaly-blast-radius → snippets/blast-radius}/helpers.d.ts +7 -6
  42. package/lib/snippets/blast-radius/index.d.ts +7 -0
  43. package/lib/snippets/index.d.ts +1 -0
  44. package/lib/snippets/sampling-rule-form-sections/styled.d.ts +6 -2
  45. package/lib/snippets.js +1 -1
  46. package/lib/store.js +1 -1
  47. package/lib/theme/palettes/index.d.ts +1 -0
  48. package/lib/theme.js +1 -1
  49. package/lib/types/insights/index.d.ts +68 -13
  50. package/lib/types/workload/index.d.ts +61 -0
  51. package/lib/types.js +1 -1
  52. package/lib/visuals.js +1 -1
  53. package/package.json +27 -24
  54. package/lib/chunks/index-BlYPxLja.js +0 -311
  55. package/lib/chunks/source-instrument-form-context-Bg6JzU76.js +0 -5
  56. package/lib/containers/insights/findings/drawer/anomaly/anomaly-blast-radius/index.d.ts +0 -7
  57. /package/lib/{containers/insights/findings/drawer/anomaly/anomaly-blast-radius → snippets/blast-radius}/animated-edge.d.ts +0 -0
  58. /package/lib/{containers/insights/findings/drawer/anomaly/anomaly-blast-radius → snippets/blast-radius}/blast-radius-node.d.ts +0 -0
  59. /package/lib/{containers/insights/findings/drawer/anomaly/anomaly-blast-radius → snippets/blast-radius}/types.d.ts +0 -0
@@ -1,4 +1,4 @@
1
- import { type CSSProperties, type FC, type ReactNode } from 'react';
1
+ import { type CSSProperties, type ReactNode } from 'react';
2
2
  export declare enum TableVariant {
3
3
  Pretty = "pretty",
4
4
  Data = "data",
@@ -37,7 +37,7 @@ export interface TableColumn {
37
37
  export interface TableRowCell {
38
38
  key: string;
39
39
  rawValue: string | number | boolean;
40
- component?: FC;
40
+ component?: () => ReactNode;
41
41
  }
42
42
  export interface TableRow {
43
43
  /** Optional stable identity for the row, used to drive `activeRowId` highlight + scroll-into-view. */
@@ -1,43 +1,60 @@
1
1
  import type { TraceViewCorner, TraceViewRowVariant } from './types';
2
- export declare const TraceViewRoot: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
3
- export declare const TraceViewHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$corner"> & {
2
+ export declare const TraceViewRoot: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
3
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
4
+ }> & string;
5
+ export declare const TraceViewHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
6
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
7
+ }, {
4
8
  $corner: TraceViewCorner;
5
- }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$corner"> & {
6
- $corner: TraceViewCorner;
7
- }, never>>> & string;
8
- export declare const TraceViewHeaderTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
9
- export declare const TraceViewMetaChip: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
10
- export declare const TraceViewBody: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$corner" | "$hasHeader"> & {
11
- $corner: TraceViewCorner;
12
- $hasHeader: boolean;
13
- }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$corner" | "$hasHeader"> & {
9
+ }>> & string;
10
+ export declare const TraceViewHeaderTitle: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
11
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
12
+ }> & string;
13
+ export declare const TraceViewMetaChip: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
14
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
15
+ }> & string;
16
+ export declare const TraceViewBody: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
17
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
18
+ }, {
14
19
  $corner: TraceViewCorner;
15
20
  $hasHeader: boolean;
16
- }, never>>> & string;
17
- export declare const TraceViewRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "$variant" | "$selected" | "$interactive"> & {
18
- $variant: TraceViewRowVariant;
19
- $selected: boolean;
20
- $interactive: boolean;
21
- }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "$variant" | "$selected" | "$interactive"> & {
21
+ }>> & string;
22
+ export declare const TraceViewRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "style"> & {
23
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
24
+ }, {
22
25
  $variant: TraceViewRowVariant;
23
26
  $selected: boolean;
24
27
  $interactive: boolean;
25
- }, never>>> & string;
26
- export declare const TraceViewRowMain: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$depth"> & {
28
+ }>> & string;
29
+ export declare const TraceViewRowMain: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
30
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
31
+ }, {
27
32
  $depth: number;
28
- }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$depth"> & {
29
- $depth: number;
30
- }, never>>> & string;
31
- export declare const TraceViewIndex: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>, never> & Partial<Pick<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>, never>>> & string & Omit<import("react").ForwardRefExoticComponent<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
32
- export declare const TraceViewRowContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
33
- export declare const TraceViewServiceTag: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
34
- export declare const TraceViewServiceTagText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>, never> & Partial<Pick<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>, never>>> & string & Omit<import("react").ForwardRefExoticComponent<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
35
- export declare const TraceViewNameGroup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
36
- export declare const TraceViewDuration: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>, never> & Partial<Pick<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>, never>>> & string & Omit<import("react").ForwardRefExoticComponent<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
37
- export declare const TraceViewInlineBadge: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$tone"> & {
38
- $tone: "warning" | "danger" | "success";
39
- }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$tone"> & {
33
+ }>> & string;
34
+ export declare const TraceViewIndex: import("styled-components/dist/types").IStyledComponentBase<"web", import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>> & string & Omit<import("react").ForwardRefExoticComponent<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
35
+ export declare const TraceViewRowContent: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
36
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
37
+ }> & string;
38
+ export declare const TraceViewServiceTag: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
39
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
40
+ }> & string;
41
+ export declare const TraceViewServiceTagText: import("styled-components/dist/types").IStyledComponentBase<"web", import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>> & string & Omit<import("react").ForwardRefExoticComponent<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
42
+ export declare const TraceViewNameGroup: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
43
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
44
+ }> & string;
45
+ export declare const TraceViewDuration: import("styled-components/dist/types").IStyledComponentBase<"web", import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>> & string & Omit<import("react").ForwardRefExoticComponent<import("../typography").TypographyProps & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
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
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
48
+ }, {
40
49
  $tone: "warning" | "danger" | "success";
41
- }, never>>> & string;
42
- export declare const TraceViewPlaceholderBody: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
43
- export declare const TraceViewDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
50
+ }>> & string;
51
+ export declare const TraceViewPlaceholderBody: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
52
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
53
+ }> & string;
54
+ export declare const TraceViewDetails: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
55
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
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"> & {
59
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
60
+ }> & string;
@@ -4,6 +4,8 @@ export type TraceViewCorner = 'left' | 'right' | 'both' | 'none';
4
4
  export interface TraceViewAttribute {
5
5
  key?: string | null;
6
6
  value?: string | null;
7
+ /** Compare-mode gap: render a green + detail row instead of a key/value. */
8
+ placeholder?: boolean | null;
7
9
  }
8
10
  export interface TraceViewRowBadge {
9
11
  label?: string | null;
@@ -22,6 +24,8 @@ export interface TraceViewRow {
22
24
  variant?: TraceViewRowVariant | null;
23
25
  badge?: TraceViewRowBadge | null;
24
26
  scope?: string | null;
27
+ /** Compare-mode gap when the paired span has a scope and this side does not. */
28
+ scopePlaceholder?: boolean | null;
25
29
  attributes?: TraceViewAttribute[] | null;
26
30
  }
27
31
  export interface TraceViewMetaChip {
package/lib/components.js CHANGED
@@ -1 +1 @@
1
- export{a3 as Autocomplete,bL as Badge,B as Button,i as ButtonSize,iU as ButtonTab,iV as ButtonTabList,j as ButtonVariants,b6 as CenterThis,w as Checkbox,iW as CheckboxList,a5 as CheckboxSize,cy as CliCommand,C as Code,cg as Condition,ci as Conditions,iX as DEFAULT_TIME_UNITS,m as DataCard,aa as Divider,D as Drawer,aE as DropData,eL as DropDataAlignX,eK as DropDataAlignY,x as DropDown,iY as ErrorBoundary,k as FieldMessage,d as FieldTitle,F as FlexColumn,h as FlexRow,gj as GaugeChart,gk as GaugeChartVariant,iZ as Header,i_ as HoverActions,i$ as INFO_ROW_HEIGHT_PX,I as IconButton,l as IconButtonSize,cD as IconGroup,cv as InfoRow,H as Input,ab as InputCardTable,G as InputList,z as InputTable,cV as Island,b7 as Loader,M as Modal,j0 as ModalBody,j1 as Navbar,N as NoData,K as Note,j2 as Overlay,bI as Padding,fZ as PageContent,j3 as Popup,eL as PopupAlignX,eK as PopupAlignY,ay as Radio,ce as RadioCard,j4 as RadioGroup,bQ as RadioSize,b5 as ScrollY,b8 as Search,a0 as SectionCard,j5 as SectionCardSize,a2 as Segment,ac as SegmentSize,cS as SegmentVariant,g6 as SelectWindowHours,bJ as SkeletonLoader,gI as StatusCard,gn as Stepper,g5 as TIME_WINDOW_DEFAULT_VALUE,cT as Table,j6 as TableContainer,j7 as TableTitleWrap,cU as TableVariant,j8 as TableWrap,Q as Tag,cx as TagVariants,y as TextArea,f_ as TextCard,v as TimeInput,q as Toggle,j9 as ToggleCodeComponent,r as ToggleLabelAlign,ja as ToggleList,s as ToggleSize,ek as ToggleVariant,T as Tooltip,g9 as TraceView,bR as TruncatableTypography,e as Typography,f as TypographyColor,g as TypographySize,cb as TypographyVariants,gm as UpgradeRequiredWrapper,jb as VerticalScroll,W as WarningModal,g7 as getWindowHoursButtonProps,jc as resolveTypographyColor}from"./chunks/ui-components-CjgsN17j.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{a4 as Autocomplete,bL as Badge,B as Button,i as ButtonSize,iU as ButtonTab,iV as ButtonTabList,j as ButtonVariants,C as CenterThis,x as Checkbox,iW as CheckboxList,a6 as CheckboxSize,cy as CliCommand,n as Code,cg as Condition,ci as Conditions,iX as DEFAULT_TIME_UNITS,m as DataCard,ab as Divider,D as Drawer,aF as DropData,eL as DropDataAlignX,eK as DropDataAlignY,y as DropDown,iY as ErrorBoundary,k as FieldMessage,d as FieldTitle,F as FlexColumn,h as FlexRow,gj as GaugeChart,gk as GaugeChartVariant,iZ as Header,i_ as HoverActions,i$ as INFO_ROW_HEIGHT_PX,I as IconButton,l as IconButtonSize,cD as IconGroup,cv as InfoRow,J as Input,ac as InputCardTable,H as InputList,E as InputTable,cV as Island,b7 as Loader,M as Modal,j0 as ModalBody,j1 as Navbar,N as NoData,L as Note,j2 as Overlay,bI as Padding,fZ as PageContent,j3 as Popup,eL as PopupAlignX,eK as PopupAlignY,az as Radio,ce as RadioCard,j4 as RadioGroup,bQ as RadioSize,b6 as ScrollY,b8 as Search,a1 as SectionCard,j5 as SectionCardSize,a3 as Segment,ad as SegmentSize,cS as SegmentVariant,g6 as SelectWindowHours,bJ as SkeletonLoader,gI as StatusCard,gn as Stepper,g5 as TIME_WINDOW_DEFAULT_VALUE,cT as Table,j6 as TableContainer,j7 as TableTitleWrap,cU as TableVariant,j8 as TableWrap,U as Tag,cx as TagVariants,z as TextArea,f_ as TextCard,w as TimeInput,r as Toggle,j9 as ToggleCodeComponent,s as ToggleLabelAlign,ja as ToggleList,v as ToggleSize,ek as ToggleVariant,T as Tooltip,ga as TraceView,bR as TruncatableTypography,e as Typography,f as TypographyColor,g as TypographySize,cb as TypographyVariants,gm as UpgradeRequiredWrapper,jb as VerticalScroll,W as WarningModal,g7 as getWindowHoursButtonProps,jc as resolveTypographyColor}from"./chunks/ui-components-Dvmqmy3G.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";
@@ -80,6 +80,12 @@ export declare const DISPLAY_TITLES: {
80
80
  CLOUD_CONNECTOR_SETUP_METHOD_MANUAL: string;
81
81
  CLOUD_CONNECTOR_CREATE_ROLE_TITLE: string;
82
82
  CLOUD_CONNECTOR_CREATE_ROLE_STEPS_HEADING: string;
83
+ INSTRUMENTATION_INSTRUCTIONS_TITLE: string;
84
+ INSTRUMENTATION_INSTRUCTIONS_MANUAL_SUBTITLE: string;
85
+ INSTRUMENTATION_INSTRUCTIONS_AUTOMATIC_SUBTITLE: string;
86
+ INSTRUMENTATION_INSTRUCTIONS_STEPS_HEADING: string;
87
+ INSTRUMENTATION_INSTRUCTIONS_INPUTS_HEADING: string;
88
+ INSTRUMENTATION_INSTRUCTIONS_NOTES_HEADING: string;
83
89
  CLOUD_CONNECTOR_ENTER_ARN_TITLE: string;
84
90
  CLOUD_CONNECTOR_ENTER_ARN_SUBTITLE: string;
85
91
  CLOUD_CONNECTOR_FIELD_ACCOUNT_ID_LABEL: string;
package/lib/constants.js CHANGED
@@ -1 +1 @@
1
- export{d7 as ACCEPT_RECOMMENDATION_DESCRIPTION,bK as ACTION_CATEGORIES,bw as ACTION_OPTIONS,id as ACTION_TYPE_TO_CATEGORY,ie as ALL_LANGUAGES_WILDCARD,ig as ALL_SOURCES,d2 as APPLY_VIA_GITOPS_DESCRIPTION,d4 as APPLY_VIA_UI_DESCRIPTION,d8 as BTN_ACCEPT,dn as BTN_CANCEL,dv as BTN_CONTINUE_EDITING,gK as BTN_CREATE_FIRST_RULE,cX as BTN_CREATE_RULE,dr as BTN_DELETE_RULE,d9 as BTN_DISMISS,dh as BTN_DOCS,ad as BTN_EDIT_AUTO_RULE,dq as BTN_EDIT_RULE,di as BTN_RESTORE,dF as BTN_SAVE,dp as BTN_SAVE_RULE,n as BUTTON_TEXTS,ds as CATEGORY_DESCRIPTIONS,b0 as CATEGORY_LABELS,du as CATEGORY_TITLES,ih as CREATE_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,ii as CREATE_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,ij as CREATE_NOISY_AUTO_RULE_DRAWER_TITLE,bk as DEFAULT_CLUSTER_ID,cc as DEFAULT_CLUSTER_NAME,gF as DEFAULT_DATA_STREAM_NAME,as as DESC_DURATION,ik as DESC_ERRORS,av as DESC_OPERATION,il as DESC_PERCENTAGE_HIGHLY_RELEVANT,c1 as DESC_PERCENTAGE_NOISY,b1 as DESC_RULE_TYPE,a1 as DESC_SOURCE_SCOPE,c8 as DESTINATION_CATEGORIES,gr as DISPLAY_LANGUAGES,o as DISPLAY_TITLES,bS as DOCS_BASE_URL,bB as DestinationCategoryTypes,dB as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_SUBTITLE,dC as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,dz as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_SUBTITLE,dA as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,dD as EDIT_NOISY_AUTO_RULE_DRAWER_SUBTITLE,dE as EDIT_NOISY_AUTO_RULE_DRAWER_TITLE,dt as EDIT_TITLES,dl as EMPTY_SUBTITLE,dm as EMPTY_TITLE,aJ as EMPTY_VALUE,bo as ERROR_APPLY_RECOMMENDATION,bP as EXTRACTION_FORMAT_COPY,bN as EXTRACT_ATTRIBUTE_FORM,gN as FILTER_TYPE_ALL,bb as FORM_ALERTS,d5 as GITOPS_OVERRIDE_WARNING,da as INSTALLATION_METHOD_DESCRIPTION,bF as INSTRUMENTATION_RULE_OPTIONS,d1 as LABEL_APPLY_VIA_GITOPS,d3 as LABEL_APPLY_VIA_UI,df as LABEL_BENEFITS,dg as LABEL_CONSIDERATIONS,at as LABEL_CUSTOM_DURATION,c5 as LABEL_CUSTOM_PERCENTAGE,c4 as LABEL_DISABLED,cW as LABEL_DISABLED_RULE,aT as LABEL_DROP_ALL,b_ as LABEL_DROP_AT_MOST,c3 as LABEL_ENABLED,d6 as LABEL_ENABLE_RECOMMENDATION,aB as LABEL_HTTP_ROUTE,aD as LABEL_HTTP_ROUTE_PREFIX,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,aF as LABEL_METHOD,aY as LABEL_NOTE,ae as LABEL_NO_PREVIEW,aI as LABEL_OPERATION_TYPE,im as LABEL_RULE_DISABLED,io as LABEL_RULE_ENABLED,aW as LABEL_RULE_NAME,aX as LABEL_RULE_TYPE,aS as LABEL_SAMPLE,ax as LABEL_SERVER_ADDRESS,aA as LABEL_TEMPLATED_PATH,aC as LABEL_TEMPLATED_PATH_PREFIX,dc as LABEL_VIA_GITOPS,db as LABEL_VIA_UI,cK as LANGUAGE_OPTIONS,b4 as MONITORS_OPTIONS,L as NOTE_ENTIRE_CLUSTER,Z as NOTE_SOURCE_SCOPE_LOGIC,dd as NOT_APPLICABLE_SUMMARY,ip 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,cJ as OTEL_DISTRO_NAME_OPTIONS,aO as PERCENTAGE_SECTION_DESCRIPTIONS,a_ as PLACEHOLDER_NOTE,az as PLACEHOLDER_ROUTE,aZ as PLACEHOLDER_RULE_NAME,a4 as PLACEHOLDER_SEARCH_SOURCE,aw as PLACEHOLDER_SERVER_ADDRESS,cu as PROCESS_ATTRIBUTE_NAMES,dj as RECOMMENDATIONS_DRAWER_SUBTITLE,dk as RECOMMENDATIONS_DRAWER_TITLE,c as REGEX_TESTER_DRAWER,c2 as SAMPLING_AUTO_RULE_TITLE,gR as SAMPLING_BTN_CREATE_RULE,gP as SAMPLING_BTN_DOCS,gQ as SAMPLING_BTN_REFRESH,c0 as SAMPLING_COST_REDUCTION_AUTO_RULE_TITLE,dw as SAMPLING_DEFAULT_CONFIRM_DESCRIPTION,dy as SAMPLING_DEFAULT_CONFIRM_PREVIEW_LABEL,dx as SAMPLING_DEFAULT_CONFIRM_TITLE,gU as SAMPLING_DELETE_MODAL_APPROVE,gV as SAMPLING_DELETE_MODAL_CANCEL,gW as SAMPLING_DELETE_MODAL_DESCRIPTION,gX as SAMPLING_DELETE_MODAL_TITLE,dG as SAMPLING_DRAWER_WIDTH,gO as SAMPLING_DUPLICATE_RULE_WARNING,bZ as SAMPLING_HIGHLY_RELEVANT_AUTO_RULE_TITLE,fv as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_1,fw as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_2,fx as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_3,fy as SAMPLING_ONBOARDING_ADVANCED_LEFT_TITLE,fz as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_1,fA as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_2,fB as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_3,fC as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_4,fD as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_5,fE as SAMPLING_ONBOARDING_ADVANCED_RIGHT_TITLE,fG as SAMPLING_ONBOARDING_ADVANCED_SUBTITLE,fF as SAMPLING_ONBOARDING_ADVANCED_TITLE,fX as SAMPLING_ONBOARDING_AMBIENT_LABEL,f1 as SAMPLING_ONBOARDING_BTN_GO_TO,eO as SAMPLING_ONBOARDING_BTN_NEXT,fu as SAMPLING_ONBOARDING_BTN_READ_MORE,fc as SAMPLING_ONBOARDING_BTN_SKIP,fd as SAMPLING_ONBOARDING_BTN_START,fH as SAMPLING_ONBOARDING_COMMON_BANNER,fW as SAMPLING_ONBOARDING_COMMON_RULES_SECTION,fK as SAMPLING_ONBOARDING_DROP_DESCRIPTION,fJ as SAMPLING_ONBOARDING_DROP_SUBTITLE,fI as SAMPLING_ONBOARDING_DROP_TITLE,fN as SAMPLING_ONBOARDING_ERROR_PRESET_NAME,fM as SAMPLING_ONBOARDING_ERROR_PRESET_TOGGLE_LABEL,fQ as SAMPLING_ONBOARDING_KEEP_DESCRIPTION,fP as SAMPLING_ONBOARDING_KEEP_SUBTITLE,fO as SAMPLING_ONBOARDING_KEEP_TITLE,fR as SAMPLING_ONBOARDING_KEEP_USE_CASE_1,fS as SAMPLING_ONBOARDING_KEEP_USE_CASE_2,fT as SAMPLING_ONBOARDING_KEEP_USE_CASE_3,fU as SAMPLING_ONBOARDING_KEEP_USE_CASE_4,fV as SAMPLING_ONBOARDING_KEEP_USE_CASE_5,eV as SAMPLING_ONBOARDING_NOISY_BANNER,eR as SAMPLING_ONBOARDING_NOISY_DESCRIPTION,eU as SAMPLING_ONBOARDING_NOISY_PRESET_NAME,eS as SAMPLING_ONBOARDING_NOISY_PRESET_SECTION,eT as SAMPLING_ONBOARDING_NOISY_PRESET_TOGGLE_LABEL,eQ as SAMPLING_ONBOARDING_NOISY_SUBTITLE,eP as SAMPLING_ONBOARDING_NOISY_TITLE,fL as SAMPLING_ONBOARDING_PRESET_RULES_SECTION,eN as SAMPLING_ONBOARDING_RECOMMENDED_BADGE,fr as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_BADGE,fs as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_DESC,ft as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_NAME,fo as SAMPLING_ONBOARDING_STRATEGY_DROP_BADGE,fm as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_1,fn as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_2,fp as SAMPLING_ONBOARDING_STRATEGY_DROP_DESC,fq as SAMPLING_ONBOARDING_STRATEGY_DROP_NAME,fj as SAMPLING_ONBOARDING_STRATEGY_KEEP_BADGE,fh as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_1,fi as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_2,fk as SAMPLING_ONBOARDING_STRATEGY_KEEP_DESC,fl as SAMPLING_ONBOARDING_STRATEGY_KEEP_NAME,fg as SAMPLING_ONBOARDING_STRATEGY_KEEP_WARNING,ff as SAMPLING_ONBOARDING_STRATEGY_SUBTITLE,fe as SAMPLING_ONBOARDING_STRATEGY_TITLE,e_ as SAMPLING_ONBOARDING_SUCCESS_BULLET_1,e$ as SAMPLING_ONBOARDING_SUCCESS_BULLET_2,f0 as SAMPLING_ONBOARDING_SUCCESS_BULLET_3,eZ as SAMPLING_ONBOARDING_SUCCESS_INTRO,eY as SAMPLING_ONBOARDING_SUCCESS_SUBTITLE,eX as SAMPLING_ONBOARDING_SUCCESS_TITLE,fb as SAMPLING_ONBOARDING_WELCOME_BANNER,f4 as SAMPLING_ONBOARDING_WELCOME_INTRO,f5 as SAMPLING_ONBOARDING_WELCOME_STAGE_1_DESC,f6 as SAMPLING_ONBOARDING_WELCOME_STAGE_1_TITLE,f7 as SAMPLING_ONBOARDING_WELCOME_STAGE_2_DESC,f8 as SAMPLING_ONBOARDING_WELCOME_STAGE_2_TITLE,f9 as SAMPLING_ONBOARDING_WELCOME_STAGE_3_DESC,fa as SAMPLING_ONBOARDING_WELCOME_STAGE_3_TITLE,f3 as SAMPLING_ONBOARDING_WELCOME_SUBTITLE,f2 as SAMPLING_ONBOARDING_WELCOME_TITLE,gS as SAMPLING_PAGE_DESCRIPTION,gT 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,iq as SECTION_APPLIED,ir as SECTION_DISMISSED,aq as SECTION_DURATION,ao as SECTION_ERRORS,b$ as SECTION_KEEP_PERCENTAGE,is as SECTION_NOT_APPLICABLE,au as SECTION_OPERATION,it as SECTION_RECOMMENDED,b2 as SECTION_SAMPLING_PREVIEW,a8 as SECTION_SOURCE_SCOPE,de as SECTION_TITLES,gq as STORAGE_KEYS,bp as SUCCESS_APPLIED,bq as SUCCESS_DISMISSED,br as SUCCESS_RESTORED,gJ as TITLE_NO_RESULTS,gL as TITLE_NO_RULES,iu as TOKEN_ABOUT_TO_EXPIRE,a$ as TOOLTIP_NOTE,U as UNKNOWN_SOURCE_LABEL,aV as UNNAMED_RULE,dY as URL_TEMPLATIZATION_ACTION_FIELD_LABEL,e8 as URL_TEMPLATIZATION_ACTION_NAME_LABEL,dS as URL_TEMPLATIZATION_ADD_EXISTING_GROUP,dV as URL_TEMPLATIZATION_ADD_NEW_GROUP,dX as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION,em as URL_TEMPLATIZATION_BADGE_ADVANCED,e9 as URL_TEMPLATIZATION_BADGE_UI,ed as URL_TEMPLATIZATION_BTN_ADD_RULE,h7 as URL_TEMPLATIZATION_BTN_ADD_TEMPLATE,e3 as URL_TEMPLATIZATION_BTN_BACK,e1 as URL_TEMPLATIZATION_BTN_CANCEL,et as URL_TEMPLATIZATION_BTN_CLOSE,ha as URL_TEMPLATIZATION_BTN_CREATE,iv as URL_TEMPLATIZATION_BTN_CREATE_GROUP,h5 as URL_TEMPLATIZATION_BTN_CREATE_TEMPLATE_GROUP,h9 as URL_TEMPLATIZATION_BTN_DOCS,h6 as URL_TEMPLATIZATION_BTN_EDIT_GROUP,hf as URL_TEMPLATIZATION_BTN_ENABLE_DEFAULT,e2 as URL_TEMPLATIZATION_BTN_NEXT,e4 as URL_TEMPLATIZATION_BTN_SAVE,eB as URL_TEMPLATIZATION_BTN_TEST_URL,dN as URL_TEMPLATIZATION_CHOOSE_DESTINATION,e0 as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE,e6 as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE,hg as URL_TEMPLATIZATION_CUSTOM_EMPTY_SUBTITLE,hh as URL_TEMPLATIZATION_CUSTOM_EMPTY_TITLE,h0 as URL_TEMPLATIZATION_CUSTOM_SECTION_SUBTITLE,dM as URL_TEMPLATIZATION_DEFAULT_ACTION_NAME,iw as URL_TEMPLATIZATION_DEFAULT_CONFIGURED_PLACEHOLDER,hd as URL_TEMPLATIZATION_DEFAULT_EMPTY_SUBTITLE,he as URL_TEMPLATIZATION_DEFAULT_EMPTY_TITLE,ef as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_SUBTITLE,eh as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_TITLE,g_ as URL_TEMPLATIZATION_DEFAULT_SECTION_SUBTITLE,ei as URL_TEMPLATIZATION_DESC_DEFAULT_TEMPLATIZATION,en as URL_TEMPLATIZATION_DESC_SKIP_POLICY,ix as URL_TEMPLATIZATION_DESC_SOURCE_SCOPE,dR as URL_TEMPLATIZATION_DESTINATION_CLUSTER_HINT,dP as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER,dQ as URL_TEMPLATIZATION_DESTINATION_GROUP_HINT,dO as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP,ex as URL_TEMPLATIZATION_DETAIL_DISPLAY_NAME,ew as URL_TEMPLATIZATION_DETAIL_ORIGIN,ey as URL_TEMPLATIZATION_DETAIL_RESOURCE_NAME,ev as URL_TEMPLATIZATION_DETAIL_TEMPLATE,h8 as URL_TEMPLATIZATION_DOCS_URL,e7 as URL_TEMPLATIZATION_DRAWER_WIDTH,eg as URL_TEMPLATIZATION_EDIT_DEFAULT_RULE_DRAWER_TITLE,ec as URL_TEMPLATIZATION_ERROR_INVALID_STATUS_CODES,e5 as URL_TEMPLATIZATION_FOOTER_IMMEDIATE_EFFECT,ee as URL_TEMPLATIZATION_FOOTER_SAVE_EFFECT,er as URL_TEMPLATIZATION_HELPER_STATUS_CODES,eD as URL_TEMPLATIZATION_MATCH_FOUND,eF as URL_TEMPLATIZATION_MATCH_FOUND_HINT,d$ as URL_TEMPLATIZATION_NEW_ACTION_HINT,dZ as URL_TEMPLATIZATION_NEW_ACTION_NAME_LABEL,d_ as URL_TEMPLATIZATION_NEW_ACTION_PLACEHOLDER,dW as URL_TEMPLATIZATION_NEW_GROUP_DEFAULT_HINT,iy as URL_TEMPLATIZATION_NOTE_ENTIRE_CLUSTER,eE as URL_TEMPLATIZATION_NO_MATCH,eH as URL_TEMPLATIZATION_NO_MATCH_HELP,eG as URL_TEMPLATIZATION_NO_MATCH_HINT,hb as URL_TEMPLATIZATION_PAGE_DESCRIPTION,hc as URL_TEMPLATIZATION_PAGE_TITLE,es as URL_TEMPLATIZATION_PLACEHOLDER_STATUS_CODES,ea as URL_TEMPLATIZATION_PLACEHOLDER_TEMPLATE,eC as URL_TEMPLATIZATION_RESULT,dL as URL_TEMPLATIZATION_SCOPE_AND,dH as URL_TEMPLATIZATION_SCOPE_ENTIRE_CLUSTER,dI as URL_TEMPLATIZATION_SCOPE_LANGUAGE,dJ as URL_TEMPLATIZATION_SCOPE_NAMESPACE,dK as URL_TEMPLATIZATION_SCOPE_SOURCE,dT as URL_TEMPLATIZATION_SEARCH_GROUPS_PLACEHOLDER,g$ as URL_TEMPLATIZATION_SECTION_CUSTOM,gZ as URL_TEMPLATIZATION_SECTION_DEFAULT,ej as URL_TEMPLATIZATION_SECTION_DEFAULT_TEMPLATIZATION,eo as URL_TEMPLATIZATION_SECTION_SKIP_POLICY,iz as URL_TEMPLATIZATION_SECTION_SOURCE_SCOPE,eb as URL_TEMPLATIZATION_SECTION_TEMPLATES,dU as URL_TEMPLATIZATION_SELECTED_GROUP,el as URL_TEMPLATIZATION_TOGGLE_ENABLE_NORMALIZATION,ep as URL_TEMPLATIZATION_TOGGLE_SKIP_NON_2XX,eq as URL_TEMPLATIZATION_TOGGLE_SKIP_STATUS_CODES,ez as URL_TEMPLATIZATION_TRY_A_URL,eA as URL_TEMPLATIZATION_TRY_A_URL_PLACEHOLDER,h1 as URL_TEMPLATIZATION_VIEW_BY,eu as URL_TEMPLATIZATION_VIEW_DRAWER_TITLE,h2 as URL_TEMPLATIZATION_VIEW_GROUPS,h4 as URL_TEMPLATIZATION_VIEW_LIST,h3 as URL_TEMPLATIZATION_VIEW_TREE,cp as canAgentReportPodStartTime,gM as getNoResultsSubTitle,cR as getSourceConditionsForPanel,c6 as getSupportedActionOptions,bX as getSupportedLanguageIcon,bY as getSupportedLanguageLabel,iA as isActionSupportedOnPlatform,iB as isActionSupportedOnVersion,bU as isRuleSourceScopeSupported,bl as mapActionTypesToOptions,bt as mapRuleTypesToOptions,bV as normalizeSupportedLanguagesForDisplay,ca as ruleTypeRequiresConfiguration,cQ as shouldShowSourceConditionsPanel,iC as supportsAllLanguages,bW as toScopeSupportedLanguages}from"./chunks/ui-components-CjgsN17j.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{d7 as ACCEPT_RECOMMENDATION_DESCRIPTION,bK as ACTION_CATEGORIES,bw as ACTION_OPTIONS,id as ACTION_TYPE_TO_CATEGORY,ie as ALL_LANGUAGES_WILDCARD,ig as ALL_SOURCES,d2 as APPLY_VIA_GITOPS_DESCRIPTION,d4 as APPLY_VIA_UI_DESCRIPTION,d8 as BTN_ACCEPT,dn as BTN_CANCEL,dv as BTN_CONTINUE_EDITING,gK as BTN_CREATE_FIRST_RULE,cX as BTN_CREATE_RULE,dr as BTN_DELETE_RULE,d9 as BTN_DISMISS,dh as BTN_DOCS,ae as BTN_EDIT_AUTO_RULE,dq as BTN_EDIT_RULE,di as BTN_RESTORE,dF as BTN_SAVE,dp as BTN_SAVE_RULE,o as BUTTON_TEXTS,ds as CATEGORY_DESCRIPTIONS,b1 as CATEGORY_LABELS,du as CATEGORY_TITLES,ih as CREATE_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,ii as CREATE_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,ij as CREATE_NOISY_AUTO_RULE_DRAWER_TITLE,bk as DEFAULT_CLUSTER_ID,cc as DEFAULT_CLUSTER_NAME,gF as DEFAULT_DATA_STREAM_NAME,at as DESC_DURATION,ik as DESC_ERRORS,aw as DESC_OPERATION,il as DESC_PERCENTAGE_HIGHLY_RELEVANT,c1 as DESC_PERCENTAGE_NOISY,b2 as DESC_RULE_TYPE,a2 as DESC_SOURCE_SCOPE,c8 as DESTINATION_CATEGORIES,gr as DISPLAY_LANGUAGES,p as DISPLAY_TITLES,bS as DOCS_BASE_URL,bB as DestinationCategoryTypes,dB as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_SUBTITLE,dC as EDIT_COST_REDUCTION_AUTO_RULE_DRAWER_TITLE,dz as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_SUBTITLE,dA as EDIT_HIGHLY_RELEVANT_AUTO_RULE_DRAWER_TITLE,dD as EDIT_NOISY_AUTO_RULE_DRAWER_SUBTITLE,dE as EDIT_NOISY_AUTO_RULE_DRAWER_TITLE,dt as EDIT_TITLES,dl as EMPTY_SUBTITLE,dm as EMPTY_TITLE,aK as EMPTY_VALUE,bo as ERROR_APPLY_RECOMMENDATION,bP as EXTRACTION_FORMAT_COPY,bN as EXTRACT_ATTRIBUTE_FORM,gN as FILTER_TYPE_ALL,bb as FORM_ALERTS,d5 as GITOPS_OVERRIDE_WARNING,da as INSTALLATION_METHOD_DESCRIPTION,bF as INSTRUMENTATION_RULE_OPTIONS,d1 as LABEL_APPLY_VIA_GITOPS,d3 as LABEL_APPLY_VIA_UI,df as LABEL_BENEFITS,dg as LABEL_CONSIDERATIONS,au as LABEL_CUSTOM_DURATION,c5 as LABEL_CUSTOM_PERCENTAGE,c4 as LABEL_DISABLED,cW as LABEL_DISABLED_RULE,aU as LABEL_DROP_ALL,b_ as LABEL_DROP_AT_MOST,c3 as LABEL_ENABLED,d6 as LABEL_ENABLE_RECOMMENDATION,aC as LABEL_HTTP_ROUTE,aE as LABEL_HTTP_ROUTE_PREFIX,aH as LABEL_KAFKA_TOPIC,aV as LABEL_KEEP_ALL,aR as LABEL_KEEP_AT_LEAST,aS as LABEL_KEEP_AT_MOST,aQ as LABEL_KEEP_PERCENTAGE,as as LABEL_KEEP_TRACES_DURATION,aq as LABEL_KEEP_TRACES_ERRORS,aG as LABEL_METHOD,aZ as LABEL_NOTE,af as LABEL_NO_PREVIEW,aJ as LABEL_OPERATION_TYPE,im as LABEL_RULE_DISABLED,io as LABEL_RULE_ENABLED,aX as LABEL_RULE_NAME,aY as LABEL_RULE_TYPE,aT as LABEL_SAMPLE,ay as LABEL_SERVER_ADDRESS,aB as LABEL_TEMPLATED_PATH,aD as LABEL_TEMPLATED_PATH_PREFIX,dc as LABEL_VIA_GITOPS,db as LABEL_VIA_UI,cK as LANGUAGE_OPTIONS,b5 as MONITORS_OPTIONS,O as NOTE_ENTIRE_CLUSTER,_ as NOTE_SOURCE_SCOPE_LOGIC,dd as NOT_APPLICABLE_SUMMARY,ip as OPENTELEMETRY_EBPF_DISTRO_OPTION,aM as OPERATION_ALL,aL as OPERATION_HTTP_CLIENT,aI as OPERATION_HTTP_SERVER,aN as OPERATION_KAFKA_CONSUMER,aO as OPERATION_KAFKA_PRODUCER,cJ as OTEL_DISTRO_NAME_OPTIONS,aP as PERCENTAGE_SECTION_DESCRIPTIONS,a$ as PLACEHOLDER_NOTE,aA as PLACEHOLDER_ROUTE,a_ as PLACEHOLDER_RULE_NAME,a5 as PLACEHOLDER_SEARCH_SOURCE,ax as PLACEHOLDER_SERVER_ADDRESS,cu as PROCESS_ATTRIBUTE_NAMES,dj as RECOMMENDATIONS_DRAWER_SUBTITLE,dk as RECOMMENDATIONS_DRAWER_TITLE,c as REGEX_TESTER_DRAWER,c2 as SAMPLING_AUTO_RULE_TITLE,gR as SAMPLING_BTN_CREATE_RULE,gP as SAMPLING_BTN_DOCS,gQ as SAMPLING_BTN_REFRESH,c0 as SAMPLING_COST_REDUCTION_AUTO_RULE_TITLE,dw as SAMPLING_DEFAULT_CONFIRM_DESCRIPTION,dy as SAMPLING_DEFAULT_CONFIRM_PREVIEW_LABEL,dx as SAMPLING_DEFAULT_CONFIRM_TITLE,gU as SAMPLING_DELETE_MODAL_APPROVE,gV as SAMPLING_DELETE_MODAL_CANCEL,gW as SAMPLING_DELETE_MODAL_DESCRIPTION,gX as SAMPLING_DELETE_MODAL_TITLE,dG as SAMPLING_DRAWER_WIDTH,gO as SAMPLING_DUPLICATE_RULE_WARNING,bZ as SAMPLING_HIGHLY_RELEVANT_AUTO_RULE_TITLE,fv as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_1,fw as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_2,fx as SAMPLING_ONBOARDING_ADVANCED_LEFT_BULLET_3,fy as SAMPLING_ONBOARDING_ADVANCED_LEFT_TITLE,fz as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_1,fA as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_2,fB as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_3,fC as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_4,fD as SAMPLING_ONBOARDING_ADVANCED_RIGHT_BULLET_5,fE as SAMPLING_ONBOARDING_ADVANCED_RIGHT_TITLE,fG as SAMPLING_ONBOARDING_ADVANCED_SUBTITLE,fF as SAMPLING_ONBOARDING_ADVANCED_TITLE,fX as SAMPLING_ONBOARDING_AMBIENT_LABEL,f1 as SAMPLING_ONBOARDING_BTN_GO_TO,eO as SAMPLING_ONBOARDING_BTN_NEXT,fu as SAMPLING_ONBOARDING_BTN_READ_MORE,fc as SAMPLING_ONBOARDING_BTN_SKIP,fd as SAMPLING_ONBOARDING_BTN_START,fH as SAMPLING_ONBOARDING_COMMON_BANNER,fW as SAMPLING_ONBOARDING_COMMON_RULES_SECTION,fK as SAMPLING_ONBOARDING_DROP_DESCRIPTION,fJ as SAMPLING_ONBOARDING_DROP_SUBTITLE,fI as SAMPLING_ONBOARDING_DROP_TITLE,fN as SAMPLING_ONBOARDING_ERROR_PRESET_NAME,fM as SAMPLING_ONBOARDING_ERROR_PRESET_TOGGLE_LABEL,fQ as SAMPLING_ONBOARDING_KEEP_DESCRIPTION,fP as SAMPLING_ONBOARDING_KEEP_SUBTITLE,fO as SAMPLING_ONBOARDING_KEEP_TITLE,fR as SAMPLING_ONBOARDING_KEEP_USE_CASE_1,fS as SAMPLING_ONBOARDING_KEEP_USE_CASE_2,fT as SAMPLING_ONBOARDING_KEEP_USE_CASE_3,fU as SAMPLING_ONBOARDING_KEEP_USE_CASE_4,fV as SAMPLING_ONBOARDING_KEEP_USE_CASE_5,eV as SAMPLING_ONBOARDING_NOISY_BANNER,eR as SAMPLING_ONBOARDING_NOISY_DESCRIPTION,eU as SAMPLING_ONBOARDING_NOISY_PRESET_NAME,eS as SAMPLING_ONBOARDING_NOISY_PRESET_SECTION,eT as SAMPLING_ONBOARDING_NOISY_PRESET_TOGGLE_LABEL,eQ as SAMPLING_ONBOARDING_NOISY_SUBTITLE,eP as SAMPLING_ONBOARDING_NOISY_TITLE,fL as SAMPLING_ONBOARDING_PRESET_RULES_SECTION,eN as SAMPLING_ONBOARDING_RECOMMENDED_BADGE,fr as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_BADGE,fs as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_DESC,ft as SAMPLING_ONBOARDING_STRATEGY_ADVANCED_NAME,fo as SAMPLING_ONBOARDING_STRATEGY_DROP_BADGE,fm as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_1,fn as SAMPLING_ONBOARDING_STRATEGY_DROP_BULLET_2,fp as SAMPLING_ONBOARDING_STRATEGY_DROP_DESC,fq as SAMPLING_ONBOARDING_STRATEGY_DROP_NAME,fj as SAMPLING_ONBOARDING_STRATEGY_KEEP_BADGE,fh as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_1,fi as SAMPLING_ONBOARDING_STRATEGY_KEEP_BULLET_2,fk as SAMPLING_ONBOARDING_STRATEGY_KEEP_DESC,fl as SAMPLING_ONBOARDING_STRATEGY_KEEP_NAME,fg as SAMPLING_ONBOARDING_STRATEGY_KEEP_WARNING,ff as SAMPLING_ONBOARDING_STRATEGY_SUBTITLE,fe as SAMPLING_ONBOARDING_STRATEGY_TITLE,e_ as SAMPLING_ONBOARDING_SUCCESS_BULLET_1,e$ as SAMPLING_ONBOARDING_SUCCESS_BULLET_2,f0 as SAMPLING_ONBOARDING_SUCCESS_BULLET_3,eZ as SAMPLING_ONBOARDING_SUCCESS_INTRO,eY as SAMPLING_ONBOARDING_SUCCESS_SUBTITLE,eX as SAMPLING_ONBOARDING_SUCCESS_TITLE,fb as SAMPLING_ONBOARDING_WELCOME_BANNER,f4 as SAMPLING_ONBOARDING_WELCOME_INTRO,f5 as SAMPLING_ONBOARDING_WELCOME_STAGE_1_DESC,f6 as SAMPLING_ONBOARDING_WELCOME_STAGE_1_TITLE,f7 as SAMPLING_ONBOARDING_WELCOME_STAGE_2_DESC,f8 as SAMPLING_ONBOARDING_WELCOME_STAGE_2_TITLE,f9 as SAMPLING_ONBOARDING_WELCOME_STAGE_3_DESC,fa as SAMPLING_ONBOARDING_WELCOME_STAGE_3_TITLE,f3 as SAMPLING_ONBOARDING_WELCOME_SUBTITLE,f2 as SAMPLING_ONBOARDING_WELCOME_TITLE,gS as SAMPLING_PAGE_DESCRIPTION,gT as SAMPLING_PAGE_TITLE,a8 as SCOPE_AND_LABEL,a7 as SCOPE_GROUP_ANY_OF_HINT,Z as SCOPE_GROUP_LANGUAGES_TITLE,Y as SCOPE_GROUP_NAMESPACES_TITLE,Q as SCOPE_GROUP_SOURCES_TITLE,iq as SECTION_APPLIED,ir as SECTION_DISMISSED,ar as SECTION_DURATION,ap as SECTION_ERRORS,b$ as SECTION_KEEP_PERCENTAGE,is as SECTION_NOT_APPLICABLE,av as SECTION_OPERATION,it as SECTION_RECOMMENDED,b3 as SECTION_SAMPLING_PREVIEW,a9 as SECTION_SOURCE_SCOPE,de as SECTION_TITLES,gq as STORAGE_KEYS,bp as SUCCESS_APPLIED,bq as SUCCESS_DISMISSED,br as SUCCESS_RESTORED,gJ as TITLE_NO_RESULTS,gL as TITLE_NO_RULES,iu as TOKEN_ABOUT_TO_EXPIRE,b0 as TOOLTIP_NOTE,X as UNKNOWN_SOURCE_LABEL,aW as UNNAMED_RULE,dY as URL_TEMPLATIZATION_ACTION_FIELD_LABEL,e8 as URL_TEMPLATIZATION_ACTION_NAME_LABEL,dS as URL_TEMPLATIZATION_ADD_EXISTING_GROUP,dV as URL_TEMPLATIZATION_ADD_NEW_GROUP,dX as URL_TEMPLATIZATION_ADVANCED_CONFIGURATION,em as URL_TEMPLATIZATION_BADGE_ADVANCED,e9 as URL_TEMPLATIZATION_BADGE_UI,ed as URL_TEMPLATIZATION_BTN_ADD_RULE,h7 as URL_TEMPLATIZATION_BTN_ADD_TEMPLATE,e3 as URL_TEMPLATIZATION_BTN_BACK,e1 as URL_TEMPLATIZATION_BTN_CANCEL,et as URL_TEMPLATIZATION_BTN_CLOSE,ha as URL_TEMPLATIZATION_BTN_CREATE,iv as URL_TEMPLATIZATION_BTN_CREATE_GROUP,h5 as URL_TEMPLATIZATION_BTN_CREATE_TEMPLATE_GROUP,h9 as URL_TEMPLATIZATION_BTN_DOCS,h6 as URL_TEMPLATIZATION_BTN_EDIT_GROUP,hf as URL_TEMPLATIZATION_BTN_ENABLE_DEFAULT,e2 as URL_TEMPLATIZATION_BTN_NEXT,e4 as URL_TEMPLATIZATION_BTN_SAVE,eB as URL_TEMPLATIZATION_BTN_TEST_URL,dN as URL_TEMPLATIZATION_CHOOSE_DESTINATION,e0 as URL_TEMPLATIZATION_CUSTOM_DRAWER_SUBTITLE,e6 as URL_TEMPLATIZATION_CUSTOM_DRAWER_TITLE,hg as URL_TEMPLATIZATION_CUSTOM_EMPTY_SUBTITLE,hh as URL_TEMPLATIZATION_CUSTOM_EMPTY_TITLE,h0 as URL_TEMPLATIZATION_CUSTOM_SECTION_SUBTITLE,dM as URL_TEMPLATIZATION_DEFAULT_ACTION_NAME,iw as URL_TEMPLATIZATION_DEFAULT_CONFIGURED_PLACEHOLDER,hd as URL_TEMPLATIZATION_DEFAULT_EMPTY_SUBTITLE,he as URL_TEMPLATIZATION_DEFAULT_EMPTY_TITLE,ef as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_SUBTITLE,eh as URL_TEMPLATIZATION_DEFAULT_RULE_DRAWER_TITLE,g_ as URL_TEMPLATIZATION_DEFAULT_SECTION_SUBTITLE,ei as URL_TEMPLATIZATION_DESC_DEFAULT_TEMPLATIZATION,en as URL_TEMPLATIZATION_DESC_SKIP_POLICY,ix as URL_TEMPLATIZATION_DESC_SOURCE_SCOPE,dR as URL_TEMPLATIZATION_DESTINATION_CLUSTER_HINT,dP as URL_TEMPLATIZATION_DESTINATION_ENTIRE_CLUSTER,dQ as URL_TEMPLATIZATION_DESTINATION_GROUP_HINT,dO as URL_TEMPLATIZATION_DESTINATION_TEMPLATE_GROUP,ex as URL_TEMPLATIZATION_DETAIL_DISPLAY_NAME,ew as URL_TEMPLATIZATION_DETAIL_ORIGIN,ey as URL_TEMPLATIZATION_DETAIL_RESOURCE_NAME,ev as URL_TEMPLATIZATION_DETAIL_TEMPLATE,h8 as URL_TEMPLATIZATION_DOCS_URL,e7 as URL_TEMPLATIZATION_DRAWER_WIDTH,eg as URL_TEMPLATIZATION_EDIT_DEFAULT_RULE_DRAWER_TITLE,ec as URL_TEMPLATIZATION_ERROR_INVALID_STATUS_CODES,e5 as URL_TEMPLATIZATION_FOOTER_IMMEDIATE_EFFECT,ee as URL_TEMPLATIZATION_FOOTER_SAVE_EFFECT,er as URL_TEMPLATIZATION_HELPER_STATUS_CODES,eD as URL_TEMPLATIZATION_MATCH_FOUND,eF as URL_TEMPLATIZATION_MATCH_FOUND_HINT,d$ as URL_TEMPLATIZATION_NEW_ACTION_HINT,dZ as URL_TEMPLATIZATION_NEW_ACTION_NAME_LABEL,d_ as URL_TEMPLATIZATION_NEW_ACTION_PLACEHOLDER,dW as URL_TEMPLATIZATION_NEW_GROUP_DEFAULT_HINT,iy as URL_TEMPLATIZATION_NOTE_ENTIRE_CLUSTER,eE as URL_TEMPLATIZATION_NO_MATCH,eH as URL_TEMPLATIZATION_NO_MATCH_HELP,eG as URL_TEMPLATIZATION_NO_MATCH_HINT,hb as URL_TEMPLATIZATION_PAGE_DESCRIPTION,hc as URL_TEMPLATIZATION_PAGE_TITLE,es as URL_TEMPLATIZATION_PLACEHOLDER_STATUS_CODES,ea as URL_TEMPLATIZATION_PLACEHOLDER_TEMPLATE,eC as URL_TEMPLATIZATION_RESULT,dL as URL_TEMPLATIZATION_SCOPE_AND,dH as URL_TEMPLATIZATION_SCOPE_ENTIRE_CLUSTER,dI as URL_TEMPLATIZATION_SCOPE_LANGUAGE,dJ as URL_TEMPLATIZATION_SCOPE_NAMESPACE,dK as URL_TEMPLATIZATION_SCOPE_SOURCE,dT as URL_TEMPLATIZATION_SEARCH_GROUPS_PLACEHOLDER,g$ as URL_TEMPLATIZATION_SECTION_CUSTOM,gZ as URL_TEMPLATIZATION_SECTION_DEFAULT,ej as URL_TEMPLATIZATION_SECTION_DEFAULT_TEMPLATIZATION,eo as URL_TEMPLATIZATION_SECTION_SKIP_POLICY,iz as URL_TEMPLATIZATION_SECTION_SOURCE_SCOPE,eb as URL_TEMPLATIZATION_SECTION_TEMPLATES,dU as URL_TEMPLATIZATION_SELECTED_GROUP,el as URL_TEMPLATIZATION_TOGGLE_ENABLE_NORMALIZATION,ep as URL_TEMPLATIZATION_TOGGLE_SKIP_NON_2XX,eq as URL_TEMPLATIZATION_TOGGLE_SKIP_STATUS_CODES,ez as URL_TEMPLATIZATION_TRY_A_URL,eA as URL_TEMPLATIZATION_TRY_A_URL_PLACEHOLDER,h1 as URL_TEMPLATIZATION_VIEW_BY,eu as URL_TEMPLATIZATION_VIEW_DRAWER_TITLE,h2 as URL_TEMPLATIZATION_VIEW_GROUPS,h4 as URL_TEMPLATIZATION_VIEW_LIST,h3 as URL_TEMPLATIZATION_VIEW_TREE,cp as canAgentReportPodStartTime,gM as getNoResultsSubTitle,cR as getSourceConditionsForPanel,c6 as getSupportedActionOptions,bX as getSupportedLanguageIcon,bY as getSupportedLanguageLabel,iA as isActionSupportedOnPlatform,iB as isActionSupportedOnVersion,bU as isRuleSourceScopeSupported,bl as mapActionTypesToOptions,bt as mapRuleTypesToOptions,bV as normalizeSupportedLanguagesForDisplay,ca as ruleTypeRequiresConfiguration,cQ as shouldShowSourceConditionsPanel,iC as supportsAllLanguages,bW as toScopeSupportedLanguages}from"./chunks/ui-components-Dvmqmy3G.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";
@@ -0,0 +1,21 @@
1
+ import { type FC } from 'react';
2
+ import type { Workload } from '../../../../types';
3
+ /**
4
+ * How to instrument one workload, as the connector rendered it.
5
+ *
6
+ * This card exists because of what a cloud connector's DEFAULT is. A workload type the connector
7
+ * discovers but does not instrument is instrumented BY THE CUSTOMER — they change their own
8
+ * Terraform / CloudFormation / Bicep, deploy, and Odigos observes the result. Reporting such a
9
+ * workload as "not instrumented" without saying what to do about it describes a problem and
10
+ * withholds the fix, and nothing converges it in the meantime.
11
+ *
12
+ * Everything rendered here is text the connector produced. The card does no substitution, no
13
+ * templating and no interpretation of the change: `content` arrives with this workload's endpoint,
14
+ * service name and region already filled in. That is deliberate — the connector computes the change
15
+ * from the same recipes it later JUDGES the workload against, so a second rendering here would be
16
+ * free to disagree with the one that decides whether the customer's deployment reports as drifted.
17
+ */
18
+ export interface InstructionsCardProps {
19
+ source: Workload;
20
+ }
21
+ export declare const InstructionsCard: FC<InstructionsCardProps>;
@@ -1,12 +1,16 @@
1
- export declare const HeaderBar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$hasBack"> & {
1
+ export declare const HeaderBar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
2
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
3
+ }, {
2
4
  $hasBack: boolean;
3
- }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$hasBack"> & {
4
- $hasBack: boolean;
5
- }, never>>> & string;
6
- export declare const BackArrow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
7
- export declare const HeaderSpacer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
8
- export declare const Body: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$width"> & {
9
- $width: number;
10
- }, never> & Partial<Pick<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$width"> & {
5
+ }>> & string;
6
+ export declare const BackArrow: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
7
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
8
+ }> & string;
9
+ export declare const HeaderSpacer: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
10
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
11
+ }> & string;
12
+ export declare const Body: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Merged<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
13
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
14
+ }, {
11
15
  $width: number;
12
- }, never>>> & string;
16
+ }>> & string;
@@ -1,3 +1,9 @@
1
- export declare const SectionWithHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
2
- export declare const SectionHeaderRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
3
- export declare const SectionInner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
1
+ export declare const SectionWithHeader: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
2
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
3
+ }> & string;
4
+ export declare const SectionHeaderRow: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
5
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
6
+ }> & string;
7
+ export declare const SectionInner: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
8
+ style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
9
+ }> & string;
@@ -0,0 +1,23 @@
1
+ import type { InsightsCatalog, InsightsRiskAssessment } from '../../../../../../types';
2
+ export type RiskBreakdownSignalRow = {
3
+ source: string;
4
+ name: string;
5
+ rationale?: string | null;
6
+ category: string;
7
+ weight: number;
8
+ confidence: number;
9
+ contribution: number;
10
+ isEnricher: boolean;
11
+ };
12
+ export type RiskBreakdownGroup = {
13
+ categoryId: string;
14
+ label: string;
15
+ mitre?: string | null;
16
+ owasp?: string | null;
17
+ signals: RiskBreakdownSignalRow[];
18
+ };
19
+ /** Fold risk signals into kill-chain category groups (debug-UI / Figma order). */
20
+ export declare const buildRiskBreakdownGroups: (risk: InsightsRiskAssessment, catalog?: InsightsCatalog | null) => RiskBreakdownGroup[];
21
+ export declare const formatConfidence: (confidence: number) => string;
22
+ export declare const RISK_BREAKDOWN_TITLE = "Risk breakdown";
23
+ export declare const RISK_BREAKDOWN_TOOLTIP = "How this anomaly score was computed from weighted signals, confidence, and optional multi-category correlation.";
@@ -0,0 +1,9 @@
1
+ import { type FC } from 'react';
2
+ import type { InsightsCatalog, InsightsRiskAssessment } from '../../../../../../types';
3
+ import { RISK_BREAKDOWN_TITLE, RISK_BREAKDOWN_TOOLTIP } from './helpers';
4
+ export interface RiskBreakdownProps {
5
+ risk?: InsightsRiskAssessment | null;
6
+ catalog?: InsightsCatalog | null;
7
+ }
8
+ export declare const RiskBreakdown: FC<RiskBreakdownProps>;
9
+ export { RISK_BREAKDOWN_TITLE, RISK_BREAKDOWN_TOOLTIP };
@@ -0,0 +1,22 @@
1
+ import { type FC } from 'react';
2
+ import { TagVariants } from '../../components';
3
+ import { type InsightsTransactionIdentityValue, type InsightsTransactionStat } from '../../types';
4
+ export declare const identityDimensionDisplayLabel: (key: string, value: string) => string;
5
+ export type OperationIdentityFields = {
6
+ operationName?: string | null;
7
+ identityDimensions?: InsightsTransactionIdentityValue[] | null;
8
+ };
9
+ /** Plain-text label: `POST /buy · 200` (or with gRPC / custom dim labels). */
10
+ export declare const formatOperationIdentityLabel: ({ operationName, identityDimensions }: OperationIdentityFields) => string;
11
+ /**
12
+ * Guardrail allowlist entries are opaque `KIND\\toperation` strings (canonical operation may
13
+ * include [key=value] suffixes). Split only enough to show kind + clean name + dim labels.
14
+ */
15
+ export declare const formatGuardrailTransactionIdentity: (item: string) => string;
16
+ export declare const formatTransactionScopeLabel: (tx: Pick<InsightsTransactionStat, "namespace" | "service" | "operationName" | "identityDimensions">) => string;
17
+ export interface OperationIdentityDisplayProps extends OperationIdentityFields {
18
+ tagVariant?: TagVariants;
19
+ fallback?: string;
20
+ }
21
+ /** Tag for the clean operation name + badges for identity dimensions (status codes, etc.). */
22
+ export declare const OperationIdentityDisplay: FC<OperationIdentityDisplayProps>;
@@ -1,6 +1,6 @@
1
1
  import { type ReactNode, type CSSProperties, type FC } from 'react';
2
2
  import { ActionsProps, type RichTitleProps } from '../../../../snippets';
3
- import { type TableColumn, type TableRow, type TextCardProps, type TableProps } from '../../../../components';
3
+ import { type TableColumn, type TableRow, type TextCardProps, type TableProps, NoDataProps } from '../../../../components';
4
4
  interface ContainedTableAndHeadingProps {
5
5
  richTitle: RichTitleProps;
6
6
  textCards: TextCardProps[];
@@ -11,6 +11,7 @@ interface ContainedTableAndHeadingProps {
11
11
  tableKey?: string | number;
12
12
  tableMaxHeight?: CSSProperties['maxHeight'];
13
13
  tableWithCheckboxes?: boolean;
14
+ tableNoDataProps?: NoDataProps;
14
15
  isLoading?: boolean;
15
16
  actions?: ActionsProps['actions'];
16
17
  children?: ReactNode;
@@ -1,6 +1,6 @@
1
1
  import { type FC } from 'react';
2
- import type { InsightsServiceStat, InsightsTransactionStat } from '../../../../../types';
3
2
  import { DetectionPolicyScope } from './types';
3
+ import type { InsightsServiceStat, InsightsTransactionStat } from '../../../../../types';
4
4
  export interface CreateOverridePanelProps {
5
5
  services: InsightsServiceStat[];
6
6
  transactions: InsightsTransactionStat[];
@@ -1,5 +1,5 @@
1
1
  export declare const TITLE_GUARDRAILS = "Guardrails";
2
- export declare const DESC_PANEL_GUARDRAILS = "Guardrails are rules you declare about how a service may communicate. A broken guardrail is a Policy violation.\nPick a service to see what it actually talks to, check the callers/callees/egress you want to allow.";
2
+ export declare const DESC_PANEL_GUARDRAILS = "Guardrails are rules you declare about how a service may communicate. A broken guardrail is a Policy violation.\nPick a service to see what it actually talks to, check the callers/callees/egress/transactions you want to allow.";
3
3
  export declare const TITLE_CREATED_GUARDRAILS = "Created Guardrails";
4
4
  export declare const TITLE_NO_GUARDRAILS = "No guardrails yet";
5
5
  export declare const DESC_NO_GUARDRAILS = "Create a guardrail to declare allowed service communication.";
@@ -19,6 +19,10 @@ export declare const TITLE_EGRESS = "Egress";
19
19
  export declare const DESC_EGRESS = "External destinations it may reach";
20
20
  export declare const TITLE_NO_EGRESS = "No egress detected";
21
21
  export declare const DESC_NO_EGRESS = "No egress found for this selection";
22
+ export declare const TITLE_TRANSACTIONS = "Transactions";
23
+ export declare const DESC_TRANSACTIONS = "Operations this service may expose";
24
+ export declare const TITLE_NO_TRANSACTIONS = "No Transactions detected";
25
+ export declare const DESC_NO_TRANSACTIONS = "No transactions found for this selection";
22
26
  export declare const TITLE_ADOPT_ENFORCE = "Adopt as enforce";
23
27
  export declare const DESC_ADOPT_ENFORCE = "Alert on violation";
24
28
  export declare const TITLE_ADOPT_SUGGEST = "Adopt as suggest";
@@ -33,3 +37,4 @@ export declare const LABEL_COMING_SOON = "Coming soon";
33
37
  export declare const RULE_KEY_CALLERS = "allowed_callers";
34
38
  export declare const RULE_KEY_CALLEES = "allowed_callees";
35
39
  export declare const RULE_KEY_EGRESS = "allowed_egress";
40
+ export declare const RULE_KEY_TRANSACTIONS = "allowed_transactions";
@@ -6,6 +6,7 @@ export interface FacetSectionProps {
6
6
  items: string[];
7
7
  selected: Set<string>;
8
8
  onToggle: (item: string, checked: boolean) => void;
9
+ formatLabel?: (item: string) => string;
9
10
  onToggleAll?: (checked: boolean) => void;
10
11
  emptyIcon: SVG;
11
12
  emptyTitle: string;
@@ -15,9 +15,11 @@ export declare const buildGuardrailInput: (params: {
15
15
  callers: string[];
16
16
  callees: string[];
17
17
  egress: string[];
18
+ transactions: string[];
18
19
  governed?: {
19
20
  callers?: boolean;
20
21
  callees?: boolean;
21
22
  egress?: boolean;
23
+ transactions?: boolean;
22
24
  };
23
25
  }) => InsightsGuardrailInput;
@@ -1,5 +1,7 @@
1
1
  import { InsightsLearningConditionType, InsightsLearningMode, type InsightsLearningCondition, type InsightsLearningConditionInput, type InsightsLearningPolicy, type InsightsLearningPolicyInput, type InsightsPolicyScope, type InsightsTransactionStat } from '../../../../../types';
2
2
  import { DurationUnit, InsightsDeviationClass, InsightsPolicyScope as PolicyScope, isGlobalPolicy, type LearningConditionDraft, type LearningPolicyListItem } from './types';
3
+ import { formatTransactionScopeLabel } from '../../../operation-identity';
4
+ export { formatTransactionScopeLabel };
3
5
  export declare const nextConditionKey: () => string;
4
6
  export declare const buildPolicyId: (scope: InsightsPolicyScope | string, scopeKey: string, deviationClass: InsightsDeviationClass) => string;
5
7
  export declare const minutesFromUnit: (value: number, unit: DurationUnit) => number;
@@ -21,7 +23,6 @@ export declare const apiConditionToDraft: (condition: InsightsLearningCondition)
21
23
  export declare const draftConditionToApi: (condition: LearningConditionDraft) => InsightsLearningConditionInput;
22
24
  export declare const createDefaultCondition: (type?: InsightsLearningConditionType) => LearningConditionDraft;
23
25
  export declare const insightsLearningPolicyToListItem: (policy: InsightsLearningPolicy) => LearningPolicyListItem;
24
- export declare const formatTransactionScopeLabel: (tx: InsightsTransactionStat) => string;
25
26
  /** Prefer human-readable transaction labels when stats are available. */
26
27
  export declare const withResolvedOverrideNames: (policies: LearningPolicyListItem[], transactions: InsightsTransactionStat[]) => LearningPolicyListItem[];
27
28
  export declare const listItemToInsightsLearningPolicyInput: (policy: LearningPolicyListItem) => InsightsLearningPolicyInput;
@@ -6,13 +6,21 @@ interface SectionProps {
6
6
  children: ReactNode;
7
7
  }
8
8
  export declare const Section: FC<SectionProps>;
9
- export declare const StatsRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
9
+ export declare const StatsRow: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
10
+ style?: React.CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
11
+ }> & string;
10
12
  interface StatTileProps {
11
13
  label: string;
12
14
  value: string;
13
15
  }
14
16
  export declare const StatTile: FC<StatTileProps>;
15
- export declare const EmptyNote: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
16
- export declare const TableFrame: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
17
- export declare const VizFrame: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>> & string;
17
+ export declare const EmptyNote: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
18
+ style?: React.CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
19
+ }> & string;
20
+ export declare const TableFrame: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
21
+ style?: React.CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
22
+ }> & string;
23
+ export declare const VizFrame: import("styled-components/dist/types").IStyledComponentBase<"web", Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style"> & {
24
+ style?: React.CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined;
25
+ }> & string;
18
26
  export {};
@@ -2,6 +2,8 @@ export declare const TITLE_LEARNING_EXAMPLES = "Learning examples";
2
2
  export declare const TITLE_RETENTION = "Retention";
3
3
  export declare const TITLE_MEMORY_LIMITS = "Memory limits";
4
4
  export declare const TITLE_DATABASE_WRITEBACK = "Database writeback";
5
+ export declare const TITLE_TRANSACTION_GUARDRAILS = "Transaction guardrails";
6
+ export declare const TITLE_TRANSACTION_IDENTITY = "Transaction identity dimensions";
5
7
  export declare const LABEL_MAX_EXAMPLE_TRACES = "Maximum example traces";
6
8
  export declare const HELPER_MAX_EXAMPLE_TRACES = "Maximum number of example traces collected per transaction.";
7
9
  export declare const UNIT_TRACES = "traces";
@@ -21,11 +23,27 @@ export declare const UNIT_MEMBERS = "members";
21
23
  export declare const LABEL_FLUSH_INTERVAL = "Flush interval";
22
24
  export declare const HELPER_FLUSH_INTERVAL = "How often pending learning data and occurrence counts are written to ClickHouse. Changes apply without a restart.";
23
25
  export declare const HINT_FLUSH_INTERVAL = "Default: 5 \u00B7 Maximum: 300";
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.";
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.";
29
+ export declare const HINT_IDENTITY_DIMENSIONS = "Up to 5 enabled at once. Changing dimensions creates new transaction identities.";
30
+ export declare const LABEL_IDENTITY_EMPTY = "No dimensions configured \u2014 transactions use the entry span name only.";
31
+ export declare const BTN_ADD_IDENTITY_DIMENSION = "Add dimension";
32
+ export declare const PLACEHOLDER_IDENTITY_KEY = "e.g. http.response.status_code";
33
+ export declare const LABEL_IDENTITY_ENABLED = "On";
34
+ export declare const TITLE_IDENTITY_CHANGED = "Identity dimensions changed";
35
+ export declare const DESC_IDENTITY_CHANGED = "New traffic will mint new transaction identities. Existing transactions stop receiving volume and become stale.\nReset deletes every transaction and related baselines/samples/findings, then relearns from new traffic. Keep only saves the new dimension config.";
36
+ export declare const BTN_RESET_TRANSACTIONS = "Reset all transactions";
37
+ export declare const BTN_KEEP_TRANSACTIONS = "Keep existing transactions";
24
38
  export declare const NOTE_EVIDENCE_SAMPLES = "Anomaly and guardrail evidence each keep a single write-once sample; occurrences are counted separately.";
25
- export declare const NOTE_FINDINGS_LOOKBACK = "Findings lookback is chosen per page, not here.";
26
39
  export declare const BTN_SAVE_SETTINGS = "Save settings";
27
40
  export declare const BTN_DISCARD_CHANGES = "Discard changes";
28
41
  export declare const LABEL_SYSTEM_UNAVAILABLE = "System settings are not available.";
29
42
  export declare const MIN_SETTING = 1;
30
43
  export declare const MAX_OBSERVATION_RETENTION_DAYS = 90;
31
44
  export declare const MAX_FLUSH_INTERVAL_SECONDS = 300;
45
+ export declare const MAX_ENABLED_IDENTITY_DIMENSIONS = 5;
46
+ export declare const DEFAULT_IDENTITY_DIMENSIONS: {
47
+ key: string;
48
+ enabled: boolean;
49
+ }[];
@@ -11,6 +11,7 @@ export declare enum TransactionsColumnKeys {
11
11
  Kind = "kind",
12
12
  Operation = "operation",
13
13
  Baseline = "baseline",
14
+ Guardrail = "guardrail",
14
15
  Volume = "volume",
15
16
  TransactionCount = "transactionCount"
16
17
  }
@@ -20,7 +21,19 @@ export type TransactionsServiceGroup = {
20
21
  volume: number;
21
22
  transactions: InsightsTransactionStat[];
22
23
  };
23
- export declare const getTransactionsRowActions: (row: TableRow, openDrawer: OpenInsightsDrawer) => HoverAction[];
24
+ export type TransactionsSelectionHandlers = {
25
+ selectedIds: string[];
26
+ toggleSelection: (transactionId: string, selected: boolean) => void;
27
+ };
28
+ export type TransactionsPromoteHandlers = {
29
+ onPromote: (transactionId: string) => void;
30
+ canPromote: boolean;
31
+ };
32
+ export type TransactionsDeleteHandlers = {
33
+ onDelete: (transactionId: string) => void;
34
+ canDelete: boolean;
35
+ };
36
+ export declare const getTransactionsRowActions: (row: TableRow, openDrawer: OpenInsightsDrawer, promote?: TransactionsPromoteHandlers, remove?: TransactionsDeleteHandlers) => HoverAction[];
24
37
  export declare const TRANSACTIONS_TABLE_COLUMNS: TableColumn[];
25
38
  export declare const TRANSACTIONS_GROUP_BY_SERVICE_COLUMNS: TableColumn[];
26
39
  export declare const getCountsForTransactions: (transactions?: InsightsTransactionStat[]) => {
@@ -30,5 +43,5 @@ export declare const getCountsForTransactions: (transactions?: InsightsTransacti
30
43
  promoted: number;
31
44
  learning: number;
32
45
  };
33
- export declare const getTableRowsForTransactions: (theme: DefaultTheme, formatDurationAgo: FormatDurationAgo, transactions?: InsightsTransactionStat[], limit?: number) => TableRow[];
34
- export declare const getTableRowsForTransactionsGroupedByService: (theme: DefaultTheme, formatDurationAgo: FormatDurationAgo, openDrawer: OpenInsightsDrawer, groups: TransactionsServiceGroup[]) => TableRow[];
46
+ export declare const getTableRowsForTransactions: (theme: DefaultTheme, formatDurationAgo: FormatDurationAgo, transactions?: InsightsTransactionStat[], limit?: number, selection?: TransactionsSelectionHandlers) => TableRow[];
47
+ export declare const getTableRowsForTransactionsGroupedByService: (theme: DefaultTheme, formatDurationAgo: FormatDurationAgo, openDrawer: OpenInsightsDrawer, groups: TransactionsServiceGroup[], protectedScopeKeys?: Set<string>, selection?: TransactionsSelectionHandlers, promote?: TransactionsPromoteHandlers, remove?: TransactionsDeleteHandlers) => TableRow[];