Fix spelling (#6418)
This commit is contained in:
parent
1c52995cbf
commit
85fc4f827c
|
|
@ -64,7 +64,7 @@ jobs:
|
|||
|
||||
export TAG=${{ matrix.es }}
|
||||
cd ${DOCKER_DIR} && docker-compose up -d
|
||||
- name: Check port avaliable
|
||||
- name: Check port available
|
||||
run: |
|
||||
source ./test/scripts/env.sh
|
||||
echo "Waiting for OAP ready"
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@ on:
|
|||
- cron: '0 18 * * *'
|
||||
|
||||
jobs:
|
||||
Compatability:
|
||||
name: Compatability
|
||||
Compatibility:
|
||||
name: Compatibility
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 30
|
||||
env:
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ jobs:
|
|||
if: env.SKIP_CI != 'true'
|
||||
run: make docker
|
||||
|
||||
- name: Prepare envrionment
|
||||
- name: Prepare environment
|
||||
if: env.SKIP_CI != 'true'
|
||||
run: bash ${SCRIPTS_DIR}/pre.sh
|
||||
|
||||
|
|
@ -203,7 +203,7 @@ jobs:
|
|||
if: env.SKIP_CI != 'true'
|
||||
run: make docker
|
||||
|
||||
- name: Prepare envrionment
|
||||
- name: Prepare environment
|
||||
if: env.SKIP_CI != 'true'
|
||||
run: bash ${SCRIPTS_DIR}/pre.sh
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Release Notes.
|
|||
------------------
|
||||
#### Project
|
||||
* Update frontend-maven-plugin to 1.11.0, for Download node x64 binary on Apple Silicon.
|
||||
* Add E2E test for VM monitoring that metrics from Promethues node-exporter.
|
||||
* Add E2E test for VM monitoring that metrics from Prometheus node-exporter.
|
||||
|
||||
#### Java Agent
|
||||
* Remove invalid mysql configuration in agent.config.
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ import static org.apache.skywalking.apm.plugin.finagle.FinagleCtxs.getSpan;
|
|||
/**
|
||||
* When we create exitspan in ClientTracingFilter, we can't know the remote address because the ClientTracingFilter
|
||||
* is above the loadbalancefilter in the rpc call stack. However by intercept the ClientDestTracingFilter, we can get
|
||||
* the remote adress and set it to exitspan and contextCarrier.
|
||||
* the remote address and set it to exitspan and contextCarrier.
|
||||
*/
|
||||
public class ClientDestTracingFilterInterceptor extends AbstractInterceptor {
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ public class WebFluxWebClientInterceptor implements InstanceMethodsAroundInterce
|
|||
final String remotePeer = getIPAndPort(uri);
|
||||
AbstractSpan span = ContextManager.createExitSpan(operationName, contextCarrier, remotePeer);
|
||||
|
||||
//set componet name
|
||||
//set components name
|
||||
span.setComponent(ComponentsDefine.SPRING_WEBCLIENT);
|
||||
Tags.URL.set(span, uri.toString());
|
||||
Tags.HTTP.METHOD.set(span, request.method().toString());
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@
|
|||
------------------
|
||||
|
||||
#### UI -> Collector GraphQL query protocol
|
||||
- Replace all tps to throughtput/cpm(calls per min)
|
||||
- Replace all tps to throughput/cpm(calls per min)
|
||||
- Add `getThermodynamic` service
|
||||
- Update version to beta
|
||||
|
||||
|
|
@ -157,7 +157,7 @@
|
|||
- Support TLS.
|
||||
- Support namespace.
|
||||
- Support token auth.
|
||||
- Group and aggregate requests based on reponse time and timeline, support Thermodynamic chart query
|
||||
- Group and aggregate requests based on response time and timeline, support Thermodynamic chart query
|
||||
- Support component librariy setting through yml file for better extendibility.
|
||||
- Optimize performance.
|
||||
- Support short column name in ES or other storage implementor.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#### Project
|
||||
* v3 protocol is added and implemented. All previous releases are incompatible with 8.x releases.
|
||||
* Service, Instance, Endpoint register mechanism and inventory storage entities are removed.
|
||||
* New GraphQL query protocol is provided, the legacy procotol is still supported(plan to remove at the end of this year).
|
||||
* New GraphQL query protocol is provided, the legacy protocol is still supported(plan to remove at the end of this year).
|
||||
* Support Prometheus network protocol. Metrics in Prometheus format could be transferred into SkyWalking.
|
||||
* Python agent provided.
|
||||
* All inventory caches have been removed.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
### Problem: Maven compilation failure with error like `Error: not found: python2`
|
||||
When you compile the project via maven, it failed at module `apm-webapp` and the following error occured.
|
||||
When you compile the project via maven, it failed at module `apm-webapp` and the following error occurred.
|
||||
|
||||
Pay attention to key words such as `node-sass` and `Error: not found: python2`.
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ This document describe how to understand, develop and contribute plugin.
|
|||
|
||||
There are 2 kinds of plugin
|
||||
1. [Tracing plugin](#tracing-plugin). Follow the distributed tracing concept to collect spans with tags and logs.
|
||||
1. [Meter plugin](#meter-plugin). Collect numeric metrics in Counter, Guage, and Histogram formats.
|
||||
1. [Meter plugin](#meter-plugin). Collect numeric metrics in Counter, Gauge, and Histogram formats.
|
||||
|
||||
We also provide the [plugin test tool](#plugin-test-tool) to verify the data collected and reported by the plugin. If you plan to contribute any plugin to our main repo, the data would be verified by this tool too.
|
||||
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ miss any newly-added dependency:
|
|||
|
||||
## Profile
|
||||
The performance profile is an enhancement feature in the APM system. We are using the thread dump to estimate the method execution time, rather than adding many local spans. In this way, the resource cost would be much less than using distributed tracing to locate slow method. This feature is suitable in the production environment. The following documents are important for developers to understand the key parts of this feature
|
||||
- [Profile data report procotol](https://github.com/apache/skywalking-data-collect-protocol/tree/master/profile) is provided like other trace, JVM data through gRPC.
|
||||
- [Profile data report protocol](https://github.com/apache/skywalking-data-collect-protocol/tree/master/profile) is provided like other trace, JVM data through gRPC.
|
||||
- [Thread dump merging mechanism](backend-profile.md) introduces the merging mechanism, which helps the end users to understand the profile report.
|
||||
- [Exporter tool of profile raw data](backend-profile-export.md) introduces when the visualization doesn't work well through the official UI, how to package the original profile data, which helps the users report the issue.
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ read the data from the target systems. This mode is typically in some metrics SD
|
|||
|
||||
## Prometheus Fetcher
|
||||
Suppose you want to enable some `metric-custom.yaml` files stored at `fetcher-prom-rules`, append its name to `enabledRules` of
|
||||
`promethues-fetcher` as below:
|
||||
`prometheus-fetcher` as below:
|
||||
|
||||
```yaml
|
||||
prometheus-fetcher:
|
||||
|
|
|
|||
|
|
@ -17,13 +17,13 @@
|
|||
# limitations under the License.
|
||||
|
||||
WORK_DIRECTORY=$1
|
||||
RESPOSITORY=$2
|
||||
REPOSITORY=$2
|
||||
COMMIT_ID=$3
|
||||
DIST_DIRECTORY=$4
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname $0)"; pwd)"
|
||||
|
||||
git clone $RESPOSITORY $WORK_DIRECTORY
|
||||
git clone $REPOSITORY $WORK_DIRECTORY
|
||||
|
||||
cd $WORK_DIRECTORY
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue