Finish the init doc of OAP and OAL.

This commit is contained in:
Wu Sheng 2018-06-27 23:24:54 +08:00
parent 8b91b431d5
commit 9f97f555f5
1 changed files with 286 additions and 0 deletions

286
docs/en/OAP/README.md Normal file
View File

@ -0,0 +1,286 @@
# Observability Analysis Platform
OAP(Observability Analysis Platform) is a new concept, which starts in SkyWalking 6.x. OAP replaces the
old SkyWalking collectors. The capabilities of the platform are following.
## OAP capabilities
<img src="https://skywalkingtest.github.io/page-resources/6_overview.png"/>
In SkyWalking 6 series, OAP accepts data from more sources, which belongs two groups: **Tracing** and **Metric**.
- **Tracing**. Including, SkyWalking native data formats. Zipkin v1,v2 data formats and Jaeger data formats.
- **Metric**. SkyWalking integrates with Service Mesh platforms, such as Istio, Envoy, Linkerd, to provide observability from data panel
or control panel. Also, SkyWalking native agents can run in metric mode, which highly improve the
performance.
At the same time by using any integration solution provided, such as SkyWalking log plugin or toolkits,
SkyWalking provides visualization integration for binding tracing and logging together by using the
trace id and span id.
As usual, all services provided by gRPC and HTTP protocol to make integration easier for unsupported ecosystem.
## Tracing in OAP
Tracing in OAP has two ways to process.
1. Traditional way in SkyWalking 5 series. Format tracing data in SkyWalking trace segment and span formats,
even for Zipkin data format. The AOP analysis the segments to get metrics, and push the metric data into
the streaming aggregation.
1. Consider tracing as some kinds of logging only. Just provide save and visualization capabilities for trace.
## Metric in OAP
Metric in OAP is totally new feature in 6 series. Build observability for a distributed system based on metric of connected nodes.
No tracing data is required.
Metric data are aggregated inside AOP cluster in streaming mode. See below about [Observability Analysis Language](#observability-analysis-language),
which provides the easy way to do aggregation and analysis in script style.
### Observability Analysis Language
Provide OAL(Observability Analysis Language) to analysis incoming data in streaming mode.
OAL focuses on metric in Service, Service Instance and Endpoint. Because of that, the language is easy to
learn and use.
Considering performance, reading and debugging, OAL is defined as a compile language.
The OAL scrips will be compiled to normal Java codes in package stage.
#### Grammar
Scripts should be named as `*.oal`
```
METRIC_NAME = from(SCOPE.(* | [FIELD][,FIELD ...]))
[.filter(FIELD OP [INT | STRING])]
.FUNCTION([PARAM][, PARAM ...])
```
#### Scope
**SCOPE** in (`All`, `Service`, `ServiceInstance`, `Endpoint`, `ServiceRelation`, `ServiceInstanceRelation`, `EndpointRelation`).
#### Field
- SCOPE `All`,
1. endpoint. Represent the endpoint path of each request.
1. latency. Represent how much time of each request.
1. status. Represent whether success or fail of the request.
1. responseCode. Represent the response code of HTTP response, if this request is the HTTP call.
All details in `All` scope will group together.
- SCOPE `Service`
Calculate the metric data from each request of the service.
1. id. Represent the unique id of the service, usually a number. **Group by this in default**.
1. name. Represent the name of the service.
1. serviceInstanceName. Represent the name of the service instance id referred.
1. endpointName. Represent the name of the endpoint, such a full path of HTTP URI.
1. latency. Represent how much time of each request.
1. status. Represent whether success or fail of the request.
1. responseCode. Represent the response code of HTTP response, if this request is the HTTP call.
1. type. Represent the type of each request. Such as: Database, HTTP, RPC, gRPC.
- SCOPE `ServiceInstance`
Calculate the metric data from each request of the service instance.
1. id. Represent the unique id of the service, usually a number. **Group by this in default**.
1. name. Represent the name of the service instance. Such as `ip:port@Service Name`.
**Notice**: current native agent uses `processId@Service name` as instance name, which is useless
when you want to setup a filter in aggregation.
1. serviceName. Represent the name of the service.
1. endpointName. Represent the name of the endpoint, such a full path of HTTP URI.
1. latency. Represent how much time of each request.
1. status. Represent whether success or fail of the request.
1. responseCode. Represent the response code of HTTP response, if this request is the HTTP call.
1. type. Represent the type of each request. Such as: Database, HTTP, RPC, gRPC.
- SCOPE `Endpoint`
Calculate the metric data from each request of the endpoint in the service.
1. id. Represent the unique id of the endpoint, usually a number. **Group by this in default**.
1. name. Represent the name of the endpoint, such a full path of HTTP URI.
1. serviceName. Represent the name of the service.
1. serviceInstanceName. Represent the name of the service instance id referred.
1. latency. Represent how much time of each request.
1. status. Represent whether success or fail of the request.
1. responseCode. Represent the response code of HTTP response, if this request is the HTTP call.
1. type. Represent the type of each request. Such as: Database, HTTP, RPC, gRPC.
- SCOPE `ServiceRelation`
Calculate the metric data from each request between one service and the other service
1. sourceServiceId. Represent the id of the source service.
1. sourceServiceName. Represent the name of the source service.
1. sourceServiceInstanceName. Represent the name of the source service instance.
1. destServiceId. Represent the id of the destination service.
1. destServiceName. Represent the name of the destination service.
1. destServiceInstanceName. Represent the name of the destination service instance.
1. endpoint. Represent the endpoint used in this call.
1. latency. Represent how much time of each request.
1. status. Represent whether success or fail of the request.
1. responseCode. Represent the response code of HTTP response, if this request is the HTTP call.
1. type. Represent the type of the remote call. Such as: Database, HTTP, RPC, gRPC.
1. detectPoint. Represent where is the relation detected. Values: client, server, proxy.
Group by `sourceServiceId`, `destServiceId` and `detectPoint`.
- SCOPE `ServiceInstanceRelation`
Calculate the metric data from each request between one service instance and the other service instance
1. sourceServiceName. Represent the name of the source service.
1. sourceServiceInstanceId. Represent the id of the source service instance.
1. sourceServiceInstanceName. Represent the name of the source service instance.
1. destServiceName. Represent the name of the destination service.
1. destServiceInstanceId. Represent the id of the destination service instance.
1. destServiceInstanceName. Represent the name of the destination service instance.
1. endpoint. Represent the endpoint used in this call.
1. latency. Represent how much time of each request.
1. status. Represent whether success or fail of the request.
1. responseCode. Represent the response code of HTTP response, if this request is the HTTP call.
1. type. Represent the type of the remote call. Such as: Database, HTTP, RPC, gRPC.
1. detectPoint. Represent where is the relation detected. Values: client, server, proxy.
Group by `sourceServiceInstanceId`, `destServiceInstanceId` and `detectPoint`.
- SCOPE `EndpointRelation`
Calculate the metric data of the dependency between one endpoint and the other endpoint.
This relation is hard to detect, also depends on tracing lib to propagate the prev endpoint.
So `EndpointRelation` scope aggregation effects only in service under tracing by SkyWalking native agents,
including auto instrument agents(like Java, .NET), OpenCensus SkyWalking exporter implementation or others propagate tracing context in SkyWalking spec.
1. endpointId. Represent the id of the endpoint as parent in the dependency.
1. endpoint. Represent the endpoint as parent in the dependency.
1. childEndpointId. Represent the id of the endpoint being used by the parent endpoint in (1)
1. childEndpoint. Represent the endpoint being used by the parent endpoint in (2)
1. rpcLatency. Represent the latency of the RPC from some codes in the endpoint to the childEndpoint. Exclude the latency caused by the endpoint(1) itself.
1. status. Represent whether success or fail of the request.
1. responseCode. Represent the response code of HTTP response, if this request is the HTTP call.
1. type. Represent the type of the remote call. Such as: Database, HTTP, RPC, gRPC.
1. detectPoint. Represent where is the relation detected. Values: client, server, proxy.
Group by `endpointId`, `childEndpointId` and `detectPoint`.
#### Filter
Use filter to build the conditions for the value of fields, by using field name and expression.
#### Aggregation Function
The default functions are provided by SkyWalking OAP core, and could implement more.
Provided functions
- `avg`
- `percent`
- `sum`
- `histogram`
#### Metric name
The metric name for storage implementor, alarm and query modules. The type inference supported by core.
#### Group
All metric data will be grouped by Scope.ID and min-level TimeBucket.
- In `Endpoint` scope, the Scope.ID = Endpoint id (the unique id based on service and its Endpoint)
#### Examples
```
// Caculate p99 of both Endpoint1 and Endpoint2
Endpoint_p99 = from(Endpoint.latency).filter(name in ("Endpoint1", "Endpoint2")).summary(0.99)
// Caculate p99 of Endpoint name started with `serv`
serv_Endpoint_p99 = from(Endpoint.latency).filter(name like ("serv%")).summary(0.99)
// Caculate the avg response time of each Endpoint
Endpoint_avg = from(Endpoint.latency).avg()
// Caculate the histogram of each Endpoint by 50 ms steps.
// Always thermodynamic diagram in UI matches this metric.
Endpoint_histogram = from(Endpoint.latency).histogram(50)
// Caculate the percent of response status is true, for each service.
Endpoint_success = from(Endpoint.*).filter(status = "true").percent()
// Caculate the percent of response code in [200, 299], for each service.
Endpoint_200 = from(Endpoint.*).filter(responseCode like "2%").percent()
// Caculate the percent of response code in [500, 599], for each service.
Endpoint_500 = from(Endpoint.*).filter(responseCode like "5%").percent()
// Caculate the sum of calls for each service.
EndpointCalls = from(Endpoint.*).sum()
```
## Query in OAP
Query is the core feature of OAP for visualization and other higher system. The query matches the metric type.
There are two types of query provided.
1. Hard codes query implementor
1. Metric style query of implementor
### Hard codes
Hard codes query implementor, is for complex logic query, such as: topology map, dependency map, which
most likely relate to mapping mechanism of the node relationship.
Even so, hard codes implementors are based on metric style query too, just need extra codes to assemble the
results.
### Metric style query
Metric style query is based on the given scope and metric name in oal scripts.
Metric style query provided in two ways
- GraphQL way. UI uses this directly, and assembles the pages.
- API way. Most for `Hard codes query implementor` to do extra works.
#### Grammar
```
Metric.Scope(SCOPE).Func(METRIC_NAME [, PARAM ...])
```
#### Scope
**SCOPE** in (`All`, `Service`, `ServiceInst`, `Endpoint`, `ServiceRelation`, `ServiceInstRelation`, `EndpointRelation`).
#### Metric name
Metric name is defined in oal script. Such as **EndpointCalls** is the name defined by `EndpointCalls = from(Endpoint.*).sum()`.
#### Metric Query Function
Metric Query Functions match the Aggregation Function in most cases, but include some order or filter features.
Try to keep the name as same as the aggregation functions.
Provided functions
- `top`
- `trend`
- `histogram`
- `sum`
#### Example
For `avg` aggregate func, `top` match it, also with parameter[1] of result size and parameter[2] of order
```
# for Service_avg = from(Service.latency).avg()
Metric.Scope("Service").topn("Service_avg", 10, "desc")
```
## Project structure overview
This overview shows maven modules AOP provided.
```
- SkyWalking Project
- apm-commons
- ...
- apm-oap
- oap-receiver
- receiver-skywalking
- receiver-zipkin
- ...
- oap-discovery
- discovery-naming
- discovery-zookeeper
- discovery-standalone
- ...
- oap-register
- register-skywalking
- ...
- oap-analysis
- analysis-trace
- analysis-metric
- analysis-log
- oap-web
- oap-libs
- cache-lib
- remote-lib
- storage-lib
- client-lib
- server-lib
```