@daocloud-proto/skoala 0.21.2-4 → 0.21.2-44
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",
|
|
@@ -287,11 +292,25 @@ export type GlobalRatelimitConfig = {
|
|
|
287
292
|
type BaseContourAdvancedConfig = {
|
|
288
293
|
resources?: SkoalaApiGeneralV1alpha1Resource.ResourceRequirements
|
|
289
294
|
diagnostic?: GatewayDiagnostic
|
|
295
|
+
tracingConfig?: TracingConfig
|
|
290
296
|
}
|
|
291
297
|
|
|
292
298
|
export type ContourAdvancedConfig = BaseContourAdvancedConfig
|
|
293
299
|
& OneOf<{ rollingUpdate: RollingUpdate; recreate: string }>
|
|
294
300
|
|
|
301
|
+
export type TracingConfigcustomTag = {
|
|
302
|
+
tagName?: string
|
|
303
|
+
tagType?: TracingConfigtagType
|
|
304
|
+
tagValue?: string
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
export type TracingConfig = {
|
|
308
|
+
enabled?: boolean
|
|
309
|
+
sampling?: number
|
|
310
|
+
maxPathLength?: number
|
|
311
|
+
customTags?: TracingConfigcustomTag[]
|
|
312
|
+
}
|
|
313
|
+
|
|
295
314
|
|
|
296
315
|
type BaseEnvoyAdvancedConfig = {
|
|
297
316
|
resources?: SkoalaApiGeneralV1alpha1Resource.ResourceRequirements
|
|
@@ -85,6 +85,7 @@ export type GetSentinelDashGrafanaReq = {
|
|
|
85
85
|
clusterName?: string
|
|
86
86
|
namespaceName?: string
|
|
87
87
|
sentinelName?: string
|
|
88
|
+
instanceIp?: string
|
|
88
89
|
}
|
|
89
90
|
|
|
90
91
|
export type GetSentinelDashGrafanaRes = {
|
|
@@ -97,6 +98,8 @@ export type GetAppsSentinelGrafanaReq = {
|
|
|
97
98
|
clusterName?: string
|
|
98
99
|
sentinel?: string
|
|
99
100
|
app?: string
|
|
101
|
+
instanceIp?: string
|
|
102
|
+
resource?: string
|
|
100
103
|
}
|
|
101
104
|
|
|
102
105
|
export type GetAppsSentinelGrafanaRes = {
|
|
@@ -54,22 +54,11 @@ export type AuthorizationPolicy = {
|
|
|
54
54
|
authPluginName?: string
|
|
55
55
|
disabled?: boolean
|
|
56
56
|
context?: {[key: string]: string}
|
|
57
|
-
authServer?: string
|
|
58
|
-
failOpen?: boolean
|
|
59
|
-
responseTimeout?: string
|
|
60
|
-
maxRequestBytes?: number
|
|
61
|
-
allowPartialMessage?: boolean
|
|
62
|
-
packAsBytes?: boolean
|
|
63
57
|
}
|
|
64
58
|
|
|
65
59
|
export type JwtProvider = {
|
|
66
60
|
jwtPluginName?: string
|
|
67
|
-
audiences?: string[]
|
|
68
61
|
default?: boolean
|
|
69
|
-
forwardJWT?: boolean
|
|
70
|
-
issuer?: string
|
|
71
|
-
name?: string
|
|
72
|
-
remoteJwks?: RemoteJWKS
|
|
73
62
|
}
|
|
74
63
|
|
|
75
64
|
export type RemoteJWKS = {
|