ddm-plugin-dubbo-support 0.3.5 → 0.3.7
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/dist/i18n.js +78 -6
- package/dist/index.js +698 -1202
- package/dist/renderer.js +1603 -856
- package/package.json +2 -4
- package/java-invoke/hello.txt +0 -1
- package/public/jar/java-invoker.jar +0 -0
package/dist/i18n.js
CHANGED
|
@@ -40,9 +40,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
40
40
|
/* harmony export */ });
|
|
41
41
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
42
42
|
settings: {
|
|
43
|
-
title: "Invoker Setting"
|
|
44
|
-
invokerType: "Default Invoker",
|
|
45
|
-
invokerTypeTips: "Before using the Java actuator, install the Java environment first. Java invocation is slower than Telnet invocation, but the information returned by the Java invocation is more complete."
|
|
43
|
+
title: "Invoker Setting"
|
|
46
44
|
},
|
|
47
45
|
connect: {
|
|
48
46
|
validateMessage: {
|
|
@@ -150,10 +148,48 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
150
148
|
providerInfo: "Provider Info",
|
|
151
149
|
requestParamType: "Request Parameter Type",
|
|
152
150
|
requestParam: "Request Parameter",
|
|
151
|
+
attachments: "Attachments",
|
|
152
|
+
attachmentKey: "Key",
|
|
153
|
+
attachmentValue: "Value",
|
|
154
|
+
attachmentSource: "Source",
|
|
155
|
+
attachmentDescription: "Description",
|
|
156
|
+
attachmentAuto: "Auto generated",
|
|
157
|
+
attachmentCustom: "Custom",
|
|
158
|
+
attachmentOverride: "Overrides auto value",
|
|
159
|
+
attachmentsUnsupported: "Attachments are not supported for the current dubbo-admin data source.",
|
|
160
|
+
showAutoAttachments: "Show hidden auto entries ({count})",
|
|
161
|
+
hideAutoAttachments: "Hide auto-generated entries",
|
|
162
|
+
attachmentReasons: {
|
|
163
|
+
contentType: "The media type of the Triple HTTP request body; JSON encoding is currently used.",
|
|
164
|
+
accept: "Declares that the Triple client expects a JSON response.",
|
|
165
|
+
triProtocolVersion: "Identifies the request as a Triple HTTP protocol request.",
|
|
166
|
+
triServiceVersion: "Matches the service version exported by the provider.",
|
|
167
|
+
triServiceGroup: "Matches the service group exported by the provider.",
|
|
168
|
+
path: "Identifies the Dubbo service path to invoke.",
|
|
169
|
+
interface: "Identifies the Dubbo service interface for this invocation.",
|
|
170
|
+
generic: "Marks this request as a GenericService invocation.",
|
|
171
|
+
version: "Matches the Dubbo service version exported by the provider.",
|
|
172
|
+
group: "Matches the Dubbo service group exported by the provider."
|
|
173
|
+
},
|
|
153
174
|
requestParamStrategyTitle: "Parameter generation strategy",
|
|
154
175
|
paramGenerateStrategyDesc: "The history argument of the last successful call is used first, and if not, an attempt is made to generate the argument",
|
|
155
176
|
format: "format",
|
|
156
177
|
responseInfo: "Response",
|
|
178
|
+
responseTiming: "Response timing",
|
|
179
|
+
clientTiming: "Client timing",
|
|
180
|
+
serverTiming: "Server-reported timing",
|
|
181
|
+
serverTimingNote: "Reported by the server for reference only; not included in client total time.",
|
|
182
|
+
timingDetailUnavailable: "No phase timing is available for this record",
|
|
183
|
+
timingPhases: {
|
|
184
|
+
prepare: "Request preparation",
|
|
185
|
+
dns: "DNS lookup",
|
|
186
|
+
tcp: "TCP connection",
|
|
187
|
+
tls: "TLS handshake",
|
|
188
|
+
send: "Request sent",
|
|
189
|
+
wait: "Waiting for response",
|
|
190
|
+
receive: "Response received",
|
|
191
|
+
decode: "Response parsing"
|
|
192
|
+
},
|
|
157
193
|
compareLastResponse: "Compare previous response",
|
|
158
194
|
closeResponseCompare: "Close response comparison",
|
|
159
195
|
historyInvokeParamList: "History call",
|
|
@@ -200,9 +236,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
200
236
|
/* harmony export */ });
|
|
201
237
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
202
238
|
settings: {
|
|
203
|
-
title: "执行器设置"
|
|
204
|
-
invokerType: "默认执行器",
|
|
205
|
-
invokerTypeTips: "使用Java执行器时,请先安装Java环境,Java调用相对Telnet执行器较慢,但是Java调用返回的信息更加完整。"
|
|
239
|
+
title: "执行器设置"
|
|
206
240
|
},
|
|
207
241
|
connect: {
|
|
208
242
|
validateMessage: {
|
|
@@ -313,10 +347,48 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
313
347
|
providerInfo: "提供者信息",
|
|
314
348
|
requestParamType: "请求参数类型",
|
|
315
349
|
requestParam: "请求参数",
|
|
350
|
+
attachments: "Attachments",
|
|
351
|
+
attachmentKey: "Key",
|
|
352
|
+
attachmentValue: "Value",
|
|
353
|
+
attachmentSource: "来源",
|
|
354
|
+
attachmentDescription: "描述",
|
|
355
|
+
attachmentAuto: "自动生成",
|
|
356
|
+
attachmentCustom: "自定义",
|
|
357
|
+
attachmentOverride: "覆盖自动值",
|
|
358
|
+
attachmentsUnsupported: "当前使用的是[ dubbo-admin ]类型的数据源,不支持 Attachments。",
|
|
359
|
+
showAutoAttachments: "显示隐藏的自动项({count})",
|
|
360
|
+
hideAutoAttachments: "隐藏自动生成项",
|
|
361
|
+
attachmentReasons: {
|
|
362
|
+
contentType: "Triple HTTP 请求体的媒体类型,当前使用 JSON 编码。",
|
|
363
|
+
accept: "声明 Triple 客户端期望接收 JSON 格式的响应。",
|
|
364
|
+
triProtocolVersion: "Triple 协议版本头,Provider 用它识别 Triple HTTP 请求。",
|
|
365
|
+
triServiceVersion: "用于匹配 Provider 发布的服务版本。",
|
|
366
|
+
triServiceGroup: "用于匹配 Provider 发布的服务分组。",
|
|
367
|
+
path: "Dubbo 协议用它定位要调用的服务路径。",
|
|
368
|
+
interface: "标识当前调用的 Dubbo 服务接口。",
|
|
369
|
+
generic: "表示本次请求使用 GenericService 泛化调用。",
|
|
370
|
+
version: "用于匹配 Provider 发布的 Dubbo 服务版本。",
|
|
371
|
+
group: "用于匹配 Provider 发布的 Dubbo 服务分组。"
|
|
372
|
+
},
|
|
316
373
|
requestParamStrategyTitle: "参数生成策略",
|
|
317
374
|
paramGenerateStrategyDesc: "首先会使用上次调用成功的历史参数,如果没有,会尝试生成参数",
|
|
318
375
|
format: "格式化",
|
|
319
376
|
responseInfo: "响应",
|
|
377
|
+
responseTiming: "响应耗时",
|
|
378
|
+
clientTiming: "客户端耗时",
|
|
379
|
+
serverTiming: "服务端报告耗时",
|
|
380
|
+
serverTimingNote: "由服务端提供,仅供参考,不计入客户端总耗时。",
|
|
381
|
+
timingDetailUnavailable: "该记录没有阶段耗时信息",
|
|
382
|
+
timingPhases: {
|
|
383
|
+
prepare: "请求准备",
|
|
384
|
+
dns: "DNS 查询",
|
|
385
|
+
tcp: "TCP 连接",
|
|
386
|
+
tls: "TLS 握手",
|
|
387
|
+
send: "发送请求",
|
|
388
|
+
wait: "等待响应",
|
|
389
|
+
receive: "接收响应",
|
|
390
|
+
decode: "响应解析"
|
|
391
|
+
},
|
|
320
392
|
compareLastResponse: "比较上一次响应结果",
|
|
321
393
|
closeResponseCompare: "关闭响应结果对比",
|
|
322
394
|
historyInvokeParamList: "历史调用参数",
|