@odigos/ui-kit 0.0.34 → 0.0.36
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.
- package/CHANGELOG.md +29 -0
- package/eslint.config.mjs +17 -0
- package/lib/components/data-card/index.d.ts +2 -1
- package/lib/components.js +8 -9
- package/lib/constants/strings/index.d.ts +6 -0
- package/lib/constants.js +1 -2
- package/lib/containers/data-flow/helpers/build-action-nodes.d.ts +7 -1
- package/lib/containers/data-flow/helpers/build-destination-nodes.d.ts +7 -1
- package/lib/containers/data-flow/helpers/build-edges.d.ts +2 -2
- package/lib/containers/data-flow/helpers/build-rule-nodes.d.ts +7 -1
- package/lib/containers/destination-modal/choose-destination/destinations-list/index.d.ts +1 -1
- package/lib/containers/destination-modal/choose-destination/index.d.ts +2 -2
- package/lib/containers.js +222 -97
- package/lib/functions.js +6 -7
- package/lib/hooks/index.d.ts +1 -0
- package/lib/hooks/useSessionStorage.d.ts +5 -0
- package/lib/hooks.js +4 -5
- package/lib/icons.js +7 -7
- package/lib/{index-Bd8ZAEvq.js → index-7YZOplrB.js} +1 -1
- package/lib/{index-Cq8NT9Hr.js → index-BGzxan6E.js} +1 -1
- package/lib/{index-ChYtqgBW.js → index-BbEmZ4Wj.js} +2 -2
- package/lib/{index-BZq0yNL-.js → index-Be0m3TUg.js} +30 -27
- package/lib/{index-CnZlllYu.js → index-BlZKWuxe.js} +7 -1
- package/lib/{index-a_WA-82O.js → index-CNbTSsNJ.js} +2 -2
- package/lib/{index-BBjwRlta.js → index-CrethNg6.js} +5 -12
- package/lib/{index-CIKkezVt.js → index-D8AnbGCE.js} +1 -1
- package/lib/{index--RecCPGA.js → index-DJpBLpwG.js} +1 -1
- package/lib/{index-DJGe2YeC.js → index-aRNtyuuU.js} +333 -232
- package/lib/{index-ovjVbVQq.js → index-oEjS7cX3.js} +4 -5
- package/lib/{index-BWZT-ipR.js → index-t3OxxFsp.js} +1 -1
- package/lib/mock-data/sources/index.d.ts +3 -0
- package/lib/snippets.js +8 -9
- package/lib/store.js +1 -1
- package/lib/theme/index.d.ts +2 -3
- package/lib/theme/palletes/index.d.ts +2 -105
- package/lib/theme.js +1 -1
- package/lib/types/common/index.d.ts +6 -0
- package/lib/types.js +8 -1
- package/lib/{useSourceSelectionFormData-DBNf1uEe.js → useSourceSelectionFormData-CH2xUOpu.js} +34 -16
- package/lib/{useTransition-dZ92VxT2.js → useTransition-0Rz0QKmh.js} +1 -1
- package/package.json +18 -21
- package/lib/index-mOgS3e5E.js +0 -101
|
@@ -1,105 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
colors: {
|
|
4
|
-
primary: string;
|
|
5
|
-
secondary: string;
|
|
6
|
-
border: string;
|
|
7
|
-
dark_grey: string;
|
|
8
|
-
translucent_bg: string;
|
|
9
|
-
dropdown_bg: string;
|
|
10
|
-
dropdown_bg_2: string;
|
|
11
|
-
warning: string;
|
|
12
|
-
error: string;
|
|
13
|
-
success: string;
|
|
14
|
-
info: string;
|
|
15
|
-
default: string;
|
|
16
|
-
majestic_blue: string;
|
|
17
|
-
majestic_blue_soft: string;
|
|
18
|
-
orange_og: string;
|
|
19
|
-
orange_soft: string;
|
|
20
|
-
dark_red: string;
|
|
21
|
-
darker_red: string;
|
|
22
|
-
darkest_red: string;
|
|
23
|
-
darkest_red_hover: string;
|
|
24
|
-
dark_green: string;
|
|
25
|
-
};
|
|
26
|
-
text: {
|
|
27
|
-
white: string;
|
|
28
|
-
primary: string;
|
|
29
|
-
secondary: string;
|
|
30
|
-
grey: string;
|
|
31
|
-
dark_grey: string;
|
|
32
|
-
darker_grey: string;
|
|
33
|
-
light_grey: string;
|
|
34
|
-
dark_button: string;
|
|
35
|
-
warning: string;
|
|
36
|
-
warning_secondary: string;
|
|
37
|
-
error: string;
|
|
38
|
-
error_secondary: string;
|
|
39
|
-
success: string;
|
|
40
|
-
success_secondary: string;
|
|
41
|
-
info: string;
|
|
42
|
-
info_secondary: string;
|
|
43
|
-
default: string;
|
|
44
|
-
default_secondary: string;
|
|
45
|
-
};
|
|
46
|
-
font_family: {
|
|
47
|
-
primary: string;
|
|
48
|
-
secondary: string;
|
|
49
|
-
code: string;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
52
|
-
declare const lightModeTheme: {
|
|
53
|
-
darkMode: boolean;
|
|
54
|
-
colors: {
|
|
55
|
-
primary: string;
|
|
56
|
-
secondary: string;
|
|
57
|
-
border: string;
|
|
58
|
-
dark_grey: string;
|
|
59
|
-
translucent_bg: string;
|
|
60
|
-
dropdown_bg: string;
|
|
61
|
-
dropdown_bg_2: string;
|
|
62
|
-
warning: string;
|
|
63
|
-
error: string;
|
|
64
|
-
success: string;
|
|
65
|
-
info: string;
|
|
66
|
-
default: string;
|
|
67
|
-
majestic_blue: string;
|
|
68
|
-
majestic_blue_soft: string;
|
|
69
|
-
orange_og: string;
|
|
70
|
-
orange_soft: string;
|
|
71
|
-
dark_red: string;
|
|
72
|
-
darker_red: string;
|
|
73
|
-
darkest_red: string;
|
|
74
|
-
darkest_red_hover: string;
|
|
75
|
-
dark_green: string;
|
|
76
|
-
};
|
|
77
|
-
text: {
|
|
78
|
-
white: string;
|
|
79
|
-
primary: string;
|
|
80
|
-
secondary: string;
|
|
81
|
-
grey: string;
|
|
82
|
-
dark_grey: string;
|
|
83
|
-
darker_grey: string;
|
|
84
|
-
light_grey: string;
|
|
85
|
-
dark_button: string;
|
|
86
|
-
warning: string;
|
|
87
|
-
warning_secondary: string;
|
|
88
|
-
error: string;
|
|
89
|
-
error_secondary: string;
|
|
90
|
-
success: string;
|
|
91
|
-
success_secondary: string;
|
|
92
|
-
info: string;
|
|
93
|
-
info_secondary: string;
|
|
94
|
-
default: string;
|
|
95
|
-
default_secondary: string;
|
|
96
|
-
};
|
|
97
|
-
font_family: {
|
|
98
|
-
primary: string;
|
|
99
|
-
secondary: string;
|
|
100
|
-
code: string;
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
export type ITheme = typeof darkModeTheme & typeof lightModeTheme;
|
|
104
|
-
export declare const getTheme: (darkMode: boolean) => ITheme;
|
|
105
|
-
export {};
|
|
1
|
+
import { DefaultTheme } from 'styled-components';
|
|
2
|
+
export declare const getTheme: (darkMode: boolean) => DefaultTheme;
|
package/lib/theme.js
CHANGED
|
@@ -85,6 +85,12 @@ export declare enum StatusType {
|
|
|
85
85
|
Info = "info",
|
|
86
86
|
Default = "default"
|
|
87
87
|
}
|
|
88
|
+
export declare enum IntrumentationStatus {
|
|
89
|
+
INSTRUMNETED = "Instrumented",
|
|
90
|
+
INSTRUMENTING = "Instrumenting",
|
|
91
|
+
UNINSTRUMENTED = "Uninstrumented",
|
|
92
|
+
NOT_INSTRUMENTED = "Not Instrumented"
|
|
93
|
+
}
|
|
88
94
|
export declare enum OtherStatus {
|
|
89
95
|
Loading = "loading",
|
|
90
96
|
Disabled = "disabled"
|
package/lib/types.js
CHANGED
|
@@ -156,6 +156,13 @@ var StatusType;
|
|
|
156
156
|
StatusType["Info"] = "info";
|
|
157
157
|
StatusType["Default"] = "default";
|
|
158
158
|
})(StatusType || (StatusType = {}));
|
|
159
|
+
var IntrumentationStatus;
|
|
160
|
+
(function (IntrumentationStatus) {
|
|
161
|
+
IntrumentationStatus["INSTRUMNETED"] = "Instrumented";
|
|
162
|
+
IntrumentationStatus["INSTRUMENTING"] = "Instrumenting";
|
|
163
|
+
IntrumentationStatus["UNINSTRUMENTED"] = "Uninstrumented";
|
|
164
|
+
IntrumentationStatus["NOT_INSTRUMENTED"] = "Not Instrumented";
|
|
165
|
+
})(IntrumentationStatus || (IntrumentationStatus = {}));
|
|
159
166
|
var OtherStatus;
|
|
160
167
|
(function (OtherStatus) {
|
|
161
168
|
OtherStatus["Loading"] = "loading";
|
|
@@ -299,4 +306,4 @@ var K8sResourceKind;
|
|
|
299
306
|
K8sResourceKind["StatefulSet"] = "StatefulSet";
|
|
300
307
|
})(K8sResourceKind || (K8sResourceKind = {}));
|
|
301
308
|
|
|
302
|
-
export { ActionCategory, ActionKeyTypes, ActionType, AddNodeTypes, BooleanOperation, CodeAttributesKeyTypes, Crud, DestinationTypes, EdgeTypes, EntityTypes, FieldTypes, HeadersCollectionKeyTypes, InputTypes, InstrumentationRuleType, JsonOperation, K8sResourceKind, NodeTypes, NumberOperation, OtherStatus, PayloadCollectionKeyTypes, PlatformType, ProgrammingLanguages, SignalType, SortDirection, StatusType, StringOperation, Tier };
|
|
309
|
+
export { ActionCategory, ActionKeyTypes, ActionType, AddNodeTypes, BooleanOperation, CodeAttributesKeyTypes, Crud, DestinationTypes, EdgeTypes, EntityTypes, FieldTypes, HeadersCollectionKeyTypes, InputTypes, InstrumentationRuleType, IntrumentationStatus, JsonOperation, K8sResourceKind, NodeTypes, NumberOperation, OtherStatus, PayloadCollectionKeyTypes, PlatformType, ProgrammingLanguages, SignalType, SortDirection, StatusType, StringOperation, Tier };
|
package/lib/{useSourceSelectionFormData-DBNf1uEe.js → useSourceSelectionFormData-CH2xUOpu.js}
RENAMED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { ActionKeyTypes, ActionType, StatusType, AddNodeTypes, EntityTypes, FieldTypes } from './types.js';
|
|
2
|
-
import { g as useNotificationStore, f as useModalStore, b as useDrawerStore, c as useEntityStore, a as useDataStreamStore, j as useSetupStore } from './index-
|
|
3
|
-
import { F as FORM_ALERTS } from './index-mOgS3e5E.js';
|
|
2
|
+
import { g as useNotificationStore, F as FORM_ALERTS, f as useModalStore, b as useDrawerStore, c as useEntityStore, a as useDataStreamStore, j as useSetupStore } from './index-aRNtyuuU.js';
|
|
4
3
|
import { useState, useEffect, useMemo } from 'react';
|
|
5
4
|
import 'styled-components';
|
|
6
5
|
import { i as isEmpty, s as safeJsonParse } from './index-BV85P9UP.js';
|
|
7
|
-
import { b as useGenericForm } from './useTransition-
|
|
8
|
-
import { g as getIdFromSseTarget, i as isLegalK8sLabel } from './index-
|
|
6
|
+
import { b as useGenericForm } from './useTransition-0Rz0QKmh.js';
|
|
7
|
+
import { g as getIdFromSseTarget, i as isLegalK8sLabel, m as mapExportedSignals } from './index-BlZKWuxe.js';
|
|
9
8
|
|
|
10
9
|
const INITIAL$2 = {
|
|
11
10
|
// @ts-ignore (TS complains about empty string because we expect an "ActionsType", but it's fine)
|
|
@@ -348,19 +347,24 @@ const useDestinationFormData = (params) => {
|
|
|
348
347
|
}
|
|
349
348
|
}, [yamlFields, preLoadedFields]);
|
|
350
349
|
useEffect(() => {
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
350
|
+
if (dynamicFields) {
|
|
351
|
+
const mapped = dynamicFields.map((field) => ({
|
|
352
|
+
key: field.name,
|
|
353
|
+
value: field.value,
|
|
354
|
+
}));
|
|
355
|
+
handleFormChange('fields', mapped);
|
|
356
|
+
}
|
|
355
357
|
}, [dynamicFields]);
|
|
356
358
|
useEffect(() => {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
359
|
+
if (supportedSignals && mapExportedSignals(formData.exportedSignals).length === 0) {
|
|
360
|
+
const { logs, metrics, traces } = supportedSignals;
|
|
361
|
+
handleFormChange('exportedSignals', {
|
|
362
|
+
logs: logs.supported,
|
|
363
|
+
metrics: metrics.supported,
|
|
364
|
+
traces: traces.supported,
|
|
365
|
+
});
|
|
366
|
+
}
|
|
367
|
+
}, [supportedSignals, formData]);
|
|
364
368
|
const validateForm = (params) => {
|
|
365
369
|
const errors = {};
|
|
366
370
|
let ok = true;
|
|
@@ -406,6 +410,20 @@ const useDestinationFormData = (params) => {
|
|
|
406
410
|
};
|
|
407
411
|
};
|
|
408
412
|
|
|
413
|
+
const useSessionStorage = () => {
|
|
414
|
+
const getItemSS = (key, defaultValue) => {
|
|
415
|
+
const item = sessionStorage.getItem(key);
|
|
416
|
+
return item ? safeJsonParse(item, defaultValue) : defaultValue;
|
|
417
|
+
};
|
|
418
|
+
const setItemSS = (key, value) => {
|
|
419
|
+
sessionStorage.setItem(key, JSON.stringify(value));
|
|
420
|
+
};
|
|
421
|
+
const removeItemSS = (key) => {
|
|
422
|
+
sessionStorage.removeItem(key);
|
|
423
|
+
};
|
|
424
|
+
return { getItemSS, setItemSS, removeItemSS };
|
|
425
|
+
};
|
|
426
|
+
|
|
409
427
|
const INITIAL = {
|
|
410
428
|
otelServiceName: '',
|
|
411
429
|
currentStreamName: '',
|
|
@@ -604,4 +622,4 @@ const useSourceSelectionFormData = (params) => {
|
|
|
604
622
|
};
|
|
605
623
|
};
|
|
606
624
|
|
|
607
|
-
export { useClickNode as a, useClickNotification as b, useDataStreamFormData as c, useDestinationFormData as d,
|
|
625
|
+
export { useClickNode as a, useClickNotification as b, useDataStreamFormData as c, useDestinationFormData as d, useSessionStorage as e, useSourceFormData as f, useSourceSelectionFormData as g, useActionFormData as u };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useState, useRef, useEffect, useCallback } from 'react';
|
|
2
|
-
import { g as useNotificationStore } from './index-
|
|
2
|
+
import { g as useNotificationStore } from './index-aRNtyuuU.js';
|
|
3
3
|
import { CodeAttributesKeyTypes, PayloadCollectionKeyTypes } from './types.js';
|
|
4
4
|
import styled from 'styled-components';
|
|
5
5
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odigos/ui-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"author": "Odigos",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -73,15 +73,15 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@xyflow/react": "^12.
|
|
76
|
+
"@xyflow/react": "^12.6.4",
|
|
77
77
|
"javascript-time-ago": "^2.5.11",
|
|
78
78
|
"lottie-react": "^2.4.1",
|
|
79
79
|
"prism-react-renderer": "^2.4.1",
|
|
80
80
|
"react": "^19.1.0",
|
|
81
81
|
"react-dom": "^19.1.0",
|
|
82
|
-
"react-error-boundary": "^
|
|
83
|
-
"styled-components": "6.1.
|
|
84
|
-
"zustand": "^5.0.
|
|
82
|
+
"react-error-boundary": "^6.0.0",
|
|
83
|
+
"styled-components": "6.1.18",
|
|
84
|
+
"zustand": "^5.0.5"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
87
|
"@xyflow/react": "^12.6.4",
|
|
@@ -91,38 +91,35 @@
|
|
|
91
91
|
"react": "^19.1.0",
|
|
92
92
|
"react-dom": "^19.1.0",
|
|
93
93
|
"react-error-boundary": "^6.0.0",
|
|
94
|
-
"styled-components": "6.1.
|
|
94
|
+
"styled-components": "6.1.18",
|
|
95
95
|
"zustand": "^5.0.5"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@babel/core": "^7.27.
|
|
98
|
+
"@babel/core": "^7.27.4",
|
|
99
99
|
"@babel/preset-env": "^7.27.2",
|
|
100
100
|
"@babel/preset-react": "^7.27.1",
|
|
101
101
|
"@babel/preset-typescript": "^7.27.1",
|
|
102
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
102
103
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
103
104
|
"@rollup/plugin-json": "^6.1.0",
|
|
104
105
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
105
106
|
"@storybook/addon-essentials": "^8.6.14",
|
|
106
107
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
|
|
107
|
-
"@storybook/react": "^
|
|
108
|
-
"@storybook/react-webpack5": "^
|
|
109
|
-
"@types/node": "^22.15.
|
|
110
|
-
"@types/react": "^19.1.
|
|
111
|
-
"@types/react-dom": "^19.1.
|
|
112
|
-
"@types/react-lottie": "^1.2.10",
|
|
113
|
-
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
114
|
-
"@typescript-eslint/parser": "^8.32.1",
|
|
108
|
+
"@storybook/react": "^9.0.4",
|
|
109
|
+
"@storybook/react-webpack5": "^9.0.4",
|
|
110
|
+
"@types/node": "^22.15.29",
|
|
111
|
+
"@types/react": "^19.1.6",
|
|
112
|
+
"@types/react-dom": "^19.1.6",
|
|
115
113
|
"babel-loader": "^10.0.0",
|
|
116
114
|
"babel-plugin-styled-components": "^2.1.4",
|
|
117
|
-
"eslint": "^9.
|
|
118
|
-
"eslint-
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"postcss": "^8.5.3",
|
|
115
|
+
"eslint": "^9.28.0",
|
|
116
|
+
"eslint-config-next": "^15.3.3",
|
|
117
|
+
"next": "^15.3.3",
|
|
118
|
+
"postcss": "^8.5.4",
|
|
122
119
|
"rollup": "^4.41.1",
|
|
123
120
|
"rollup-plugin-postcss": "^4.0.2",
|
|
124
121
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
125
|
-
"storybook": "^
|
|
122
|
+
"storybook": "^9.0.4",
|
|
126
123
|
"typescript": "^5.8.3"
|
|
127
124
|
}
|
|
128
125
|
}
|
package/lib/index-mOgS3e5E.js
DELETED
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
const DEFAULT_DATA_STREAM_NAME = 'default';
|
|
2
|
-
const FORM_ALERTS = {
|
|
3
|
-
REQUIRED_FIELDS: 'Required fields are missing',
|
|
4
|
-
FIELD_IS_REQUIRED: 'This field is required',
|
|
5
|
-
FORBIDDEN: 'Forbidden',
|
|
6
|
-
ENTERPRISE_ONLY: (str = 'This') => `${str} is an Enterprise feature. Please upgrade your plan.`,
|
|
7
|
-
DEFINED_FOR_ALL_STREAMS: (str) => `${str} are defined for all Data Streams.`,
|
|
8
|
-
CANNOT_EDIT_RULE: 'Cannot edit a system-managed instrumentation rule',
|
|
9
|
-
CANNOT_DELETE_RULE: 'Cannot delete a system-managed instrumentation rule',
|
|
10
|
-
LATENCY_HTTP_ROUTE: 'HTTP route must start with a forward slash "/"',
|
|
11
|
-
READONLY_WARNING: "You're not allowed to create/update/delete in readonly mode",
|
|
12
|
-
ILLEGAL_K8S_LABEL: 'Must be 63 characters or less, must consist of alphanumeric characters, "-", "_", or ".", and must start & end with an alphanumeric character (e.g., my-name, 123.abc).',
|
|
13
|
-
};
|
|
14
|
-
const DISPLAY_TITLES = {
|
|
15
|
-
NAMESPACE: 'Namespace',
|
|
16
|
-
NAME: 'Name',
|
|
17
|
-
KIND: 'Kind',
|
|
18
|
-
CONNECTION: 'Connection',
|
|
19
|
-
CONNECTIONS: 'Connections',
|
|
20
|
-
DATA_STREAM: 'Data Stream',
|
|
21
|
-
DATA_STREAMS: 'Data Streams',
|
|
22
|
-
STREAM_NAME: 'Data Stream Name',
|
|
23
|
-
NAME_YOUR_STREAM: 'Name your Data Stream',
|
|
24
|
-
NAME_YOUR_STREAM_PLACEHOLDER: 'e.g. Highest priority',
|
|
25
|
-
STREAM_DESCRIPTION: 'Provide a clear and descriptive name for your pipeline to ensure its purpose is easily understood by you and your team.',
|
|
26
|
-
STREAM_CONFIRM: 'Confirm your new Data Stream',
|
|
27
|
-
ACTION: 'Action',
|
|
28
|
-
ACTIONS: 'Actions',
|
|
29
|
-
ADD_ACTION: 'Add Action',
|
|
30
|
-
ACTION_DETAILS: 'Action Details',
|
|
31
|
-
INSTRUMENTATION_RULE: 'Instrumentation Rule',
|
|
32
|
-
INSTRUMENTATION_RULES: 'Instrumentation Rules',
|
|
33
|
-
ADD_INSTRUMENTATION_RULE: 'Add Instrumentation Rule',
|
|
34
|
-
INSTRUMENTATION_RULE_DETAILS: 'Instrumentation Rule Details',
|
|
35
|
-
DESTINATION: 'Destination',
|
|
36
|
-
DESTINATIONS: 'Destinations',
|
|
37
|
-
ADD_DESTINATION: 'Add Destination',
|
|
38
|
-
ADD_DESTINATIONS: 'Add Destinations',
|
|
39
|
-
ADD_DESTINATION_DESCRIPTION: 'Add a destination to send your telemetry data to. You can add multiple destinations.',
|
|
40
|
-
DESTINATION_DETAILS: 'Destination Details',
|
|
41
|
-
SELECTED_DESTINATIONS: 'Selected Destinations',
|
|
42
|
-
SOURCE: 'Source',
|
|
43
|
-
SOURCES: 'Sources',
|
|
44
|
-
ADD_SOURCE: 'Add Source',
|
|
45
|
-
SOURCE_DETAILS: 'Source Details',
|
|
46
|
-
SELECT_SOURCES: 'Select Sources',
|
|
47
|
-
SELECTED_SOURCES: 'Selected Sources',
|
|
48
|
-
SELECT_SOURCES_DESCRIPTION: 'Select apps to monitor in each namespace. Odigos will instrument them and send telemetry data to your destinations.',
|
|
49
|
-
NO_SOURCES: 'No sources',
|
|
50
|
-
NO_SOURCES_GO_BACK: 'No sources selected. Please go back to select sources.',
|
|
51
|
-
PLEASE_ADD_SOURCE: 'Please add a source',
|
|
52
|
-
NO_SOURCES_NAMESPACE: 'No sources available in this namespace',
|
|
53
|
-
TRY_SEARCH_OR_OTHER_NAMESPACE: 'Try searching again or select another namespace.',
|
|
54
|
-
PLEASE_MAKE_SURE_UNIGNORED_NAMESPACES: 'Please make sure your cluster has unignored namespaces',
|
|
55
|
-
INSTALLATION: 'Installation',
|
|
56
|
-
SUMMARY: 'Summary',
|
|
57
|
-
TYPE: 'Type',
|
|
58
|
-
NOTES: 'Notes',
|
|
59
|
-
STATUS: 'Status',
|
|
60
|
-
READONLY: 'Readonly',
|
|
61
|
-
LANGUAGE: 'Language',
|
|
62
|
-
MONITORS: 'Monitors',
|
|
63
|
-
SIGNALS_FOR_PROCESSING: 'Signals for Processing',
|
|
64
|
-
MANAGED_BY_PROFILE: 'Managed by Profile',
|
|
65
|
-
API_TOKEN: 'API Token',
|
|
66
|
-
API_TOKENS: 'API Tokens',
|
|
67
|
-
DESCRIBE_ODIGOS: 'Describe Odigos',
|
|
68
|
-
DESCRIBE_SOURCE: 'Describe Source',
|
|
69
|
-
DETECTED_CONTAINERS: 'Detected Containers',
|
|
70
|
-
DETECTED_CONTAINERS_DESCRIPTION: 'The system automatically instruments the containers it detects with a supported programming language.',
|
|
71
|
-
CONTAINER_NAME: 'Container Name',
|
|
72
|
-
FILTERED_COUNT_TOOLTIP: 'Represents filtered amount, out of total amount',
|
|
73
|
-
SEARCH_NAMESPACES: 'Search Namespaces',
|
|
74
|
-
SHOW_SELECTED_ONLY: 'Show selected only',
|
|
75
|
-
TO_COLLECT_OTEL_DATA: 'To collect OpenTelemetry data',
|
|
76
|
-
TO_MONITOR_OTEL_DATA: 'To monitor OpenTelemetry data',
|
|
77
|
-
TO_MODIFY_OTEL_DATA: 'To modify OpenTelemetry data',
|
|
78
|
-
QUICK_BACK_TO_SUMMARY: 'When you finish editing you can quickly go back to the summary.',
|
|
79
|
-
GO_TO_SUMMARY: 'Go to summary',
|
|
80
|
-
};
|
|
81
|
-
const BUTTON_TEXTS = {
|
|
82
|
-
ADD: 'Add',
|
|
83
|
-
ADD_NEW: 'Add New',
|
|
84
|
-
NEW: 'New',
|
|
85
|
-
SELECT: 'Select',
|
|
86
|
-
CREATE: 'Create',
|
|
87
|
-
UPDATE: 'Update',
|
|
88
|
-
EDIT: 'Edit',
|
|
89
|
-
DELETE: 'Delete',
|
|
90
|
-
CANCEL: 'Cancel',
|
|
91
|
-
DONE: 'Done',
|
|
92
|
-
SAVE: 'Save',
|
|
93
|
-
BACK: 'Back',
|
|
94
|
-
NEXT: 'Next',
|
|
95
|
-
TEST: 'Test',
|
|
96
|
-
TEST_CONNECTION: 'Test Connection',
|
|
97
|
-
INSTRUMENT: 'Instrument',
|
|
98
|
-
UNINSTRUMENT: 'Uninstrument',
|
|
99
|
-
};
|
|
100
|
-
|
|
101
|
-
export { BUTTON_TEXTS as B, DEFAULT_DATA_STREAM_NAME as D, FORM_ALERTS as F, DISPLAY_TITLES as a };
|