@daocloud-proto/skoala 0.21.2-36 → 0.21.2-40
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.
|
@@ -89,6 +89,11 @@ export enum GatewayConditionStatus {
|
|
|
89
89
|
Unknown = "Unknown",
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
export enum TracingConfigtagType {
|
|
93
|
+
Literal = "Literal",
|
|
94
|
+
Header = "Header",
|
|
95
|
+
}
|
|
96
|
+
|
|
92
97
|
export enum LogLogLevel {
|
|
93
98
|
STATUS_UNSPECIFIED = "STATUS_UNSPECIFIED",
|
|
94
99
|
Trace = "Trace",
|
|
@@ -295,8 +300,8 @@ export type ContourAdvancedConfig = BaseContourAdvancedConfig
|
|
|
295
300
|
|
|
296
301
|
export type TracingConfigcustomTag = {
|
|
297
302
|
tagName?: string
|
|
298
|
-
|
|
299
|
-
|
|
303
|
+
tagType?: TracingConfigtagType
|
|
304
|
+
tagValue?: string
|
|
300
305
|
}
|
|
301
306
|
|
|
302
307
|
export type TracingConfig = {
|