Skip to content

Commit 85fc4f8

Browse files
authored
Fix spelling (#6418)
1 parent 1c52995 commit 85fc4f8

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

.github/workflows/docker-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
6565
export TAG=${{ matrix.es }}
6666
cd ${DOCKER_DIR} && docker-compose up -d
67-
- name: Check port avaliable
67+
- name: Check port available
6868
run: |
6969
source ./test/scripts/env.sh
7070
echo "Waiting for OAP ready"

.github/workflows/e2e.compat.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ on:
2222
- cron: '0 18 * * *'
2323

2424
jobs:
25-
Compatability:
26-
name: Compatability
25+
Compatibility:
26+
name: Compatibility
2727
runs-on: ubuntu-latest
2828
timeout-minutes: 30
2929
env:

.github/workflows/e2e.istio.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
if: env.SKIP_CI != 'true'
7474
run: make docker
7575

76-
- name: Prepare envrionment
76+
- name: Prepare environment
7777
if: env.SKIP_CI != 'true'
7878
run: bash ${SCRIPTS_DIR}/pre.sh
7979

@@ -203,7 +203,7 @@ jobs:
203203
if: env.SKIP_CI != 'true'
204204
run: make docker
205205

206-
- name: Prepare envrionment
206+
- name: Prepare environment
207207
if: env.SKIP_CI != 'true'
208208
run: bash ${SCRIPTS_DIR}/pre.sh
209209

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Release Notes.
66
------------------
77
#### Project
88
* Update frontend-maven-plugin to 1.11.0, for Download node x64 binary on Apple Silicon.
9-
* Add E2E test for VM monitoring that metrics from Promethues node-exporter.
9+
* Add E2E test for VM monitoring that metrics from Prometheus node-exporter.
1010

1111
#### Java Agent
1212
* Remove invalid mysql configuration in agent.config.

apm-sniffer/apm-sdk-plugin/finagle-6.25.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/finagle/ClientDestTracingFilterInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
/**
3434
* When we create exitspan in ClientTracingFilter, we can't know the remote address because the ClientTracingFilter
3535
* is above the loadbalancefilter in the rpc call stack. However by intercept the ClientDestTracingFilter, we can get
36-
* the remote adress and set it to exitspan and contextCarrier.
36+
* the remote address and set it to exitspan and contextCarrier.
3737
*/
3838
public class ClientDestTracingFilterInterceptor extends AbstractInterceptor {
3939

apm-sniffer/apm-sdk-plugin/spring-plugins/spring-webflux-5.x-webclient-plugin/src/main/java/org/apache/skywalking/apm/plugin/spring/webflux/v5/webclient/WebFluxWebClientInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void beforeMethod(EnhancedInstance objInst, Method method, Object[] allAr
5454
final String remotePeer = getIPAndPort(uri);
5555
AbstractSpan span = ContextManager.createExitSpan(operationName, contextCarrier, remotePeer);
5656

57-
//set componet name
57+
//set components name
5858
span.setComponent(ComponentsDefine.SPRING_WEBCLIENT);
5959
Tags.URL.set(span, uri.toString());
6060
Tags.HTTP.METHOD.set(span, request.method().toString());

changes/changes-5.x.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
------------------
136136

137137
#### UI -> Collector GraphQL query protocol
138-
- Replace all tps to throughtput/cpm(calls per min)
138+
- Replace all tps to throughput/cpm(calls per min)
139139
- Add `getThermodynamic` service
140140
- Update version to beta
141141

@@ -157,7 +157,7 @@
157157
- Support TLS.
158158
- Support namespace.
159159
- Support token auth.
160-
- Group and aggregate requests based on reponse time and timeline, support Thermodynamic chart query
160+
- Group and aggregate requests based on response time and timeline, support Thermodynamic chart query
161161
- Support component librariy setting through yml file for better extendibility.
162162
- Optimize performance.
163163
- Support short column name in ES or other storage implementor.

changes/changes-8.0.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#### Project
55
* v3 protocol is added and implemented. All previous releases are incompatible with 8.x releases.
66
* Service, Instance, Endpoint register mechanism and inventory storage entities are removed.
7-
* New GraphQL query protocol is provided, the legacy procotol is still supported(plan to remove at the end of this year).
7+
* New GraphQL query protocol is provided, the legacy protocol is still supported(plan to remove at the end of this year).
88
* Support Prometheus network protocol. Metrics in Prometheus format could be transferred into SkyWalking.
99
* Python agent provided.
1010
* All inventory caches have been removed.

docs/en/FAQ/maven-compile-npm-failure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Problem: Maven compilation failure with error like `Error: not found: python2`
2-
When you compile the project via maven, it failed at module `apm-webapp` and the following error occured.
2+
When you compile the project via maven, it failed at module `apm-webapp` and the following error occurred.
33

44
Pay attention to key words such as `node-sass` and `Error: not found: python2`.
55

docs/en/guides/Java-Plugin-Development-Guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This document describe how to understand, develop and contribute plugin.
33

44
There are 2 kinds of plugin
55
1. [Tracing plugin](#tracing-plugin). Follow the distributed tracing concept to collect spans with tags and logs.
6-
1. [Meter plugin](#meter-plugin). Collect numeric metrics in Counter, Guage, and Histogram formats.
6+
1. [Meter plugin](#meter-plugin). Collect numeric metrics in Counter, Gauge, and Histogram formats.
77

88
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.
99

docs/en/guides/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ miss any newly-added dependency:
150150

151151
## Profile
152152
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
153-
- [Profile data report procotol](https://github.com/apache/skywalking-data-collect-protocol/tree/master/profile) is provided like other trace, JVM data through gRPC.
153+
- [Profile data report protocol](https://github.com/apache/skywalking-data-collect-protocol/tree/master/profile) is provided like other trace, JVM data through gRPC.
154154
- [Thread dump merging mechanism](backend-profile.md) introduces the merging mechanism, which helps the end users to understand the profile report.
155155
- [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.
156156

docs/en/setup/backend/backend-fetcher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ read the data from the target systems. This mode is typically in some metrics SD
44

55
## Prometheus Fetcher
66
Suppose you want to enable some `metric-custom.yaml` files stored at `fetcher-prom-rules`, append its name to `enabledRules` of
7-
`promethues-fetcher` as below:
7+
`prometheus-fetcher` as below:
88

99
```yaml
1010
prometheus-fetcher:

test/plugin/agent-test-tools/bin/fetch-code.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
# limitations under the License.
1818

1919
WORK_DIRECTORY=$1
20-
RESPOSITORY=$2
20+
REPOSITORY=$2
2121
COMMIT_ID=$3
2222
DIST_DIRECTORY=$4
2323

2424
ROOT_DIR="$(cd "$(dirname $0)"; pwd)"
2525

26-
git clone $RESPOSITORY $WORK_DIRECTORY
26+
git clone $REPOSITORY $WORK_DIRECTORY
2727

2828
cd $WORK_DIRECTORY
2929

0 commit comments

Comments
 (0)