fix typo in protocols and setup guide (#9749)
This commit is contained in:
parent
4752d7b74e
commit
ffddf3c392
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -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 |
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue