You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/02/18 01:52:34 UTC

[skywalking] branch master updated: Replace the URL width https (#6392)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new b70c9be  Replace the URL width https (#6392)
b70c9be is described below

commit b70c9bef6794e5689ef8dd953c123b54f75abe13
Author: Juntao Zhang <jt...@163.com>
AuthorDate: Thu Feb 18 09:52:18 2021 +0800

    Replace the URL width https (#6392)
---
 docs/en/concepts-and-designs/overview.md               |  2 +-
 docs/en/setup/backend/backend-ui-setup.md              |  2 +-
 docs/en/setup/backend/spring-sleuth-setup.md           |  8 ++++----
 .../agent-optional-plugins/Kotlin-Coroutine-plugin.md  |  6 +++---
 docs/en/ui/README.md                                   | 18 +++++++++---------
 5 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/docs/en/concepts-and-designs/overview.md b/docs/en/concepts-and-designs/overview.md
index 3a1d503..613e985 100644
--- a/docs/en/concepts-and-designs/overview.md
+++ b/docs/en/concepts-and-designs/overview.md
@@ -30,7 +30,7 @@ In addition, you can integrate
 ## Architecture
 SkyWalking is logically split into four parts: Probes, Platform backend, Storage and UI.
 
-<img src="http://skywalking.apache.org/assets/frame-v8.jpg?u=20200423"/>
+<img src="https://skywalking.apache.org/assets/frame-v8.jpg?u=20200423"/>
 
 - **Probe**s collect data and reformat them for SkyWalking requirements (different probes support different sources).
 - **Platform backend**, supports data aggregation, analysis and drives process flow from probes to the UI. The analysis includes
diff --git a/docs/en/setup/backend/backend-ui-setup.md b/docs/en/setup/backend/backend-ui-setup.md
index 25f6e9d..d5939fc 100644
--- a/docs/en/setup/backend/backend-ui-setup.md
+++ b/docs/en/setup/backend/backend-ui-setup.md
@@ -37,7 +37,7 @@ In Java, .NetCore, Node.js, Istio agents/probe, you should set the gRPC service
 
 Before deploying Skywalking in your distributed environment, you should know how agents/probes, backend, UI communicates with each other:
 
-<img src="http://skywalking.apache.org/doc-graph/communication-net.png"/>
+<img src="https://skywalking.apache.org/doc-graph/communication-net.png"/>
 
 - All native agents and probes, either language based or mesh probe, are using gRPC service (`core/default/gRPC*` in `application.yml`) to report data to the backend. Also, jetty service supported in JSON format. 
 - UI uses GraphQL (HTTP) query to access the backend also in Jetty service (`core/default/rest*` in `application.yml`).
diff --git a/docs/en/setup/backend/spring-sleuth-setup.md b/docs/en/setup/backend/spring-sleuth-setup.md
index e42699f..7eb5a5d 100644
--- a/docs/en/setup/backend/spring-sleuth-setup.md
+++ b/docs/en/setup/backend/spring-sleuth-setup.md
@@ -43,16 +43,16 @@ If you also has some customized meter at the agent side, please read [meter docu
 
 1. Open the dashboard view, click `edit` button to edit the templates.
 
-    ![Click edit button](http://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200723-01.png)
+    ![Click edit button](https://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200723-01.png)
 
 1. Create a new template. Template type: `Standard` -> Template Configuration: `Spring` -> Input the Template Name.
 
-    ![Create template](http://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200723-02.png)
+    ![Create template](https://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200723-02.png)
 
 1. Click `view` button, Finally get the spring sleuth dashboard.
 
-    ![Save template](http://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200723-03.png)
-    ![Spring Sleuth Dashboard](http://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200725-04.png)
+    ![Save template](https://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200723-03.png)
+    ![Spring Sleuth Dashboard](https://skywalking.apache.org/screenshots/8.0.0/spring-sleuth-setup-ui-20200725-04.png)
 
 ## Supported meter
 
diff --git a/docs/en/setup/service-agent/java-agent/agent-optional-plugins/Kotlin-Coroutine-plugin.md b/docs/en/setup/service-agent/java-agent/agent-optional-plugins/Kotlin-Coroutine-plugin.md
index 27c2001..9192960 100644
--- a/docs/en/setup/service-agent/java-agent/agent-optional-plugins/Kotlin-Coroutine-plugin.md
+++ b/docs/en/setup/service-agent/java-agent/agent-optional-plugins/Kotlin-Coroutine-plugin.md
@@ -18,11 +18,11 @@ We run a Kotlin coroutine based gRPC server without this coroutine plugin.
 You can find, the one call (client -> server1 -> server2) has been split two tracing paths.
 
 01. Server1 without exit span and server2 tracing path.
-![Without kotlin plugin1](http://skywalking.apache.org/screenshots/7.0.0/kotlin/coroutine/without-coroutine-plugin-server1.jpg)
+![Without kotlin plugin1](https://skywalking.apache.org/screenshots/7.0.0/kotlin/coroutine/without-coroutine-plugin-server1.jpg)
 02. Server2 tracing path.
-![Without kotlin plugin2](http://skywalking.apache.org/screenshots/7.0.0/kotlin/coroutine/without-coroutine-plugin-server2.jpg)
+![Without kotlin plugin2](https://skywalking.apache.org/screenshots/7.0.0/kotlin/coroutine/without-coroutine-plugin-server2.jpg)
 
 ### Run with the plugin
 Without changing codes manually, just install the plugin. We can find the spans be connected together. We can get all info of one client call.
 
-![With kotlin plugin](http://skywalking.apache.org/screenshots/7.0.0/kotlin/coroutine/run-with-coroutine-plugin.jpg)
+![With kotlin plugin](https://skywalking.apache.org/screenshots/7.0.0/kotlin/coroutine/run-with-coroutine-plugin.jpg)
diff --git a/docs/en/ui/README.md b/docs/en/ui/README.md
index 981ae08..2ede7b9 100644
--- a/docs/en/ui/README.md
+++ b/docs/en/ui/README.md
@@ -4,11 +4,11 @@ cluster.
 
 The latest introduction video could be found on the Youtube
 
-[![RocketBot UI](http://img.youtube.com/vi/mfKaToAKl7k/0.jpg)](http://www.youtube.com/watch?v=mfKaToAKl7k)
+[![RocketBot UI](https://img.youtube.com/vi/mfKaToAKl7k/0.jpg)](http://www.youtube.com/watch?v=mfKaToAKl7k)
 
 SkyWalking dashboard includes the following part.
 
-<img src="http://skywalking.apache.org/ui-doc/7.0.0/dashboard.png"/>
+<img src="https://skywalking.apache.org/ui-doc/7.0.0/dashboard.png"/>
 
 1. **Feature Tab Selector Zone**. The key features are list there. The more details will be introduced below.
 1. **Reload Zone**. Control the reload mechanism, including reload periodically or manually.
@@ -25,11 +25,11 @@ Dashboard provide metrics of service, service instance and endpoint. There are a
 Service, Instance and Dashboard selector could reload manually rather than reload the whole page. NOTICE, the **Reload Zone**
 wouldn't reload these selectors.
 
-<img src="http://skywalking.apache.org/ui-doc/7.0.0/dashboard-reload.png"/>
+<img src="https://skywalking.apache.org/ui-doc/7.0.0/dashboard-reload.png"/>
 
 Two default dashboards are provided to visualize the metrics of service and database.
 
-<img src="http://skywalking.apache.org/ui-doc/7.0.0/dashboard-default.png"/>
+<img src="https://skywalking.apache.org/ui-doc/7.0.0/dashboard-default.png"/>
 
 User could click the `lock` button left aside the `Service/Instance/Endpoint Reload` button to custom your own dashboard.
 
@@ -87,7 +87,7 @@ Check the entity named as `ui_template` in your storage.
 ## Topology
 Topology map shows the relationship among the services and instances with metrics.
 
-<img src="http://skywalking.apache.org/ui-doc/8.4.0/topology.png"/>
+<img src="https://skywalking.apache.org/ui-doc/8.4.0/topology.png"/>
 
 * Topology shows the default global topology including all services.
 * **Service Selector** provides 2 level selectors, service group list and service name list. The group name is separated from 
@@ -100,7 +100,7 @@ or global(include all services).
 ## Trace Query
 Trace query is a typical feature as SkyWalking provided distributed agents.
 
-<img src="http://skywalking.apache.org/ui-doc/7.0.0/trace.png"/>
+<img src="https://skywalking.apache.org/ui-doc/7.0.0/trace.png"/>
 
 * **Trace Segment List** is not the trace list. Every trace has several segments belonging to different services. If  
 query by all services or by trace id, different segments with same trace id could be list there.
@@ -112,7 +112,7 @@ Profile is an interaction feature. It provides the method level performance diag
 
 To start the profile analysis, user need to create the profile task
 
-<img src="http://skywalking.apache.org/ui-doc/7.0.0/profile-create.png" width="440px"/>
+<img src="https://skywalking.apache.org/ui-doc/7.0.0/profile-create.png" width="440px"/>
 
 1. Select the specific service. 
 1. Set the endpoint name. This endpoint name typically is the operation name of the first span. Find this on the trace 
@@ -135,7 +135,7 @@ Typically, we analysis spans having long self duration, if the span and its chil
 After choose the right span, and click the `analysis` button, you will see the stack based analysis result. The slowest methods
 have been highlighted.
 
-<img src="http://skywalking.apache.org/ui-doc/7.0.0/profile-result.png"/>
+<img src="https://skywalking.apache.org/ui-doc/7.0.0/profile-result.png"/>
 
 ### Advanced features
 1. Since 7.1.0, the profiled trace collects the HTTP request parameters for Tomcat and SpringMVC Controller automatically.
@@ -144,7 +144,7 @@ have been highlighted.
 Since 8.3.0, SkyWalking provides log query for the browser monitoring. Use [Apache SkyWalking Client JS](https://github.com/apache/skywalking-client-js)
 agent would collect metrics and error logs.
 
-<img src="http://skywalking.apache.org/ui-doc/8.3.0/log.png"/>
+<img src="https://skywalking.apache.org/ui-doc/8.3.0/log.png"/>
 
 ## Alarm
 Alarm page lists all triggered alarm. Read the backend setup documentation to know how to set up the alarm rule or integrate