@daocloud-proto/skoala 0.21.2-2 → 0.21.2-24

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.
@@ -80,6 +80,7 @@ export enum Prerequisite {
80
80
  PREREQUISITE_UNSPECIFIED = "PREREQUISITE_UNSPECIFIED",
81
81
  InsightAgent = "InsightAgent",
82
82
  SkoalaInit = "SkoalaInit",
83
+ InsightTracing = "InsightTracing",
83
84
  }
84
85
 
85
86
  export enum LBType {
@@ -287,11 +287,25 @@ export type GlobalRatelimitConfig = {
287
287
  type BaseContourAdvancedConfig = {
288
288
  resources?: SkoalaApiGeneralV1alpha1Resource.ResourceRequirements
289
289
  diagnostic?: GatewayDiagnostic
290
+ tracingConfig?: TracingConfig
290
291
  }
291
292
 
292
293
  export type ContourAdvancedConfig = BaseContourAdvancedConfig
293
294
  & OneOf<{ rollingUpdate: RollingUpdate; recreate: string }>
294
295
 
296
+ export type TracingConfigcustomTag = {
297
+ tagName?: string
298
+ literal?: string
299
+ requestHeaderName?: string
300
+ }
301
+
302
+ export type TracingConfig = {
303
+ enabled?: boolean
304
+ sampling?: number
305
+ maxPathLength?: number
306
+ customTags?: TracingConfigcustomTag[]
307
+ }
308
+
295
309
 
296
310
  type BaseEnvoyAdvancedConfig = {
297
311
  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 = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/skoala",
3
- "version": "0.21.2-2",
3
+ "version": "0.21.2-24",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {