This is an automated email from the ASF dual-hosted git repository. wusheng pushed a commit to branch polish-docs in repository https://gitbox.apache.org/repos/asf/skywalking.git
commit 696ea6dc76bb42fcd828fa03a103088749299edd Author: Wu Sheng <[email protected]> AuthorDate: Sat Jun 10 21:05:58 2023 +0800 Polish docs --- docs/en/setup/ai-pipeline/README.md | 12 +++++++----- docs/en/setup/ai-pipeline/http-restful-uri-pattern.md | 9 ++++++++- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/docs/en/setup/ai-pipeline/README.md b/docs/en/setup/ai-pipeline/README.md index 0726cb9e62..4c51aa849b 100644 --- a/docs/en/setup/ai-pipeline/README.md +++ b/docs/en/setup/ai-pipeline/README.md @@ -9,14 +9,16 @@ to 3rd party. From the industry practice, Pattern Recognition, Machine Learning(ML) and Artificial Intelligence(AI) are always overestimated, they are good at many things but have to run in a clear context. -## How to enable - -ai-pipeline module is activated by default but only running until you set up `uriRecognitionServerAddr` correctly. +The ai-pipeline module is activated by default. ```yaml ai-pipeline: - selector: ${SW_AI_PIPELINE:-} + selector: ${SW_AI_PIPELINE:default} default: uriRecognitionServerAddr: ${SW_AI_PIPELINE_URI_RECOGNITION_SERVER_ADDR:} uriRecognitionServerPort: ${SW_AI_PIPELINE_URI_RECOGNITION_SERVER_PORT:17128} -``` \ No newline at end of file +``` + +## Supported Scenarios + +* [**HTTP Restful URI recognition**](http-restful-uri-pattern.md). diff --git a/docs/en/setup/ai-pipeline/http-restful-uri-pattern.md b/docs/en/setup/ai-pipeline/http-restful-uri-pattern.md index 2afd8bba22..0aa4b244cd 100644 --- a/docs/en/setup/ai-pipeline/http-restful-uri-pattern.md +++ b/docs/en/setup/ai-pipeline/http-restful-uri-pattern.md @@ -36,4 +36,11 @@ feedRawData is running in 25-30 minutes period to push the raw data to the remot ## Configurations - `core/maxHttpUrisNumberPerService` The max number of HTTP URIs per service for further URI pattern recognition. -- No configuration to set periods of feedRawData and fetchAllPatterns services. \ No newline at end of file +- No configuration to set periods of feedRawData and fetchAllPatterns services. + +## Optional Server Implementation + +### R3 + +[RESTful Pattern Recognition(R3)](https://github.com/SkyAPM/r3) is an Apache 2.0 licensed implementation for the URI +recognition, and natively supports `URIRecognition.proto` defined in OAP. \ No newline at end of file
