From ffddf3c392bc1fd44f5e30370da02562124f1060 Mon Sep 17 00:00:00 2001 From: xiao ru xing Date: Mon, 10 Oct 2022 11:39:23 +0800 Subject: [PATCH] fix typo in protocols and setup guide (#9749) --- docs/en/protocols/Trace-Data-Protocol-v3.md | 4 ++-- docs/en/protocols/query-protocol.md | 4 ++-- docs/en/setup/backend/ui-setup.md | 2 +- docs/en/setup/service-agent/agent-compatibility.md | 2 +- docs/en/ui/README.md | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/en/protocols/Trace-Data-Protocol-v3.md b/docs/en/protocols/Trace-Data-Protocol-v3.md index d965be2b0f..a039592c85 100644 --- a/docs/en/protocols/Trace-Data-Protocol-v3.md +++ b/docs/en/protocols/Trace-Data-Protocol-v3.md @@ -152,7 +152,7 @@ message SpanObject { // Exception or error code happened in the tracked process doesn't mean isError == true, the implementations of agent plugin and tracing SDK make the final decision. bool isError = 11; // String key, String value pair. - // Tags provides more informance, includes parameters. + // Tags provides more information, includes parameters. // // In the OAP backend analysis, some special tag or tag combination could provide other advanced features. // https://github.com/apache/skywalking/blob/master/docs/en/guides/Java-Plugin-Development-Guide.md#special-span-tags @@ -209,7 +209,7 @@ enum SpanLayer { RPCFramework = 2; // HTTP is a more specific RPCFramework. Http = 3; - // A MQ layer, used in both producer and consuer sides of the MQ component. + // A MQ layer, used in both producer and consumer sides of the MQ component. MQ = 4; // A cache layer, used in tracing the cache client component. Cache = 5; diff --git a/docs/en/protocols/query-protocol.md b/docs/en/protocols/query-protocol.md index 62ae902c6a..ede220045a 100644 --- a/docs/en/protocols/query-protocol.md +++ b/docs/en/protocols/query-protocol.md @@ -95,10 +95,10 @@ extend type Query { extend type Query { getValues(metric: BatchMetricConditions!, duration: Duration!): IntValues getLinearIntValues(metric: MetricCondition!, duration: Duration!): IntValues - # Query the type of metrics including multiple values, and format them as multiple linears. + # Query the type of metrics including multiple values, and format them as multiple lines. # The seq of these multiple lines base on the calculation func in OAL # Such as, should us this to query the result of func percentile(50,75,90,95,99) in OAL, - # then five lines will be responsed, p50 is the first element of return value. + # then five lines will be responded, p50 is the first element of return value. getMultipleLinearIntValues(metric: MetricCondition!, numOfLinear: Int!, duration: Duration!): [IntValues!]! getThermodynamic(metric: MetricCondition!, duration: Duration!): Thermodynamic } diff --git a/docs/en/setup/backend/ui-setup.md b/docs/en/setup/backend/ui-setup.md index 5bcf14f94f..61b867dc8f 100644 --- a/docs/en/setup/backend/ui-setup.md +++ b/docs/en/setup/backend/ui-setup.md @@ -13,7 +13,7 @@ The settings file of UI is `webapp/webapp.yml` in the distribution package. It ```yaml serverPort: ${SW_SERVER_PORT:-8080} -# Comma seperated list of OAP addresses, without http:// prefix. +# Comma separated list of OAP addresses, without http:// prefix. oapServices: ${SW_OAP_ADDRESS:-localhost:12800} ``` diff --git a/docs/en/setup/service-agent/agent-compatibility.md b/docs/en/setup/service-agent/agent-compatibility.md index a3298961eb..b41ad96e79 100644 --- a/docs/en/setup/service-agent/agent-compatibility.md +++ b/docs/en/setup/service-agent/agent-compatibility.md @@ -4,7 +4,7 @@ SkyWalking 8.0+ uses v3 protocols. Agents don't have to keep the identical versi ## SkyWalking Native Agents -| OAP Server Version | Java | Python | NodeJS | LUA | Kong | Browser Agent | Rust | Rover(ebpf agnet) | Satellite | +| OAP Server Version | Java | Python | NodeJS | LUA | Kong | Browser Agent | Rust | Rover(ebpf agent) | Satellite | |--------------------|---------------|-----------|-----------|-----|------|---------------|------|-------------------|------------| | 8.0.1 - 8.1.0 | 8.0.0 - 8.3.0 | < = 0.6.0 | < = 0.3.0 | All | All | No | All | No | No | | 8.2.0 - 8.3.0 | 8.0.0 - 8.3.0 | < = 0.6.0 | < = 0.3.0 | All | All | All | All | No | No | diff --git a/docs/en/ui/README.md b/docs/en/ui/README.md index d8be87ff67..78ba62f2df 100644 --- a/docs/en/ui/README.md +++ b/docs/en/ui/README.md @@ -31,7 +31,7 @@ Meanwhile, there are two ways to edit an existing dashboard. ## Widget -A dashoard consists of various widget. In the `Edit` mode, widgets could be added/moved/removed/edit according to the Layer.(Every widget declares its suitable layer.) +A dashboard consists of various widget. In the `Edit` mode, widgets could be added/moved/removed/edit according to the Layer.(Every widget declares its suitable layer.) The widget provides the ability to visualize the metrics, generated through [OAL](../concepts-and-designs/mal.md), [MAL](../concepts-and-designs/mal.md), or [LAL](../concepts-and-designs/lal.md) scripts.