-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for help user deploy the Satellite as Gateway (#90)
- Loading branch information
Showing
17 changed files
with
179 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@REM | ||
@REM Licensed to the Apache Software Foundation (ASF) under one or more | ||
@REM contributor license agreements. See the NOTICE file distributed with | ||
@REM this work for additional information regarding copyright ownership. | ||
@REM The ASF licenses this file to You under the Apache License, Version 2.0 | ||
@REM (the "License"); you may not use this file except in compliance with | ||
@REM the License. You may obtain a copy of the License at | ||
@REM | ||
@REM http://www.apache.org/licenses/LICENSE-2.0 | ||
@REM | ||
@REM Unless required by applicable law or agreed to in writing, software | ||
@REM distributed under the License is distributed on an "AS IS" BASIS, | ||
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
@REM See the License for the specific language governing permissions and | ||
@REM limitations under the License. | ||
|
||
@echo off | ||
|
||
setlocal | ||
set SATELLITE_PROCESS_TITLE=Skywalking-Satellite | ||
set SATELLITE_HOME=%~dp0%.. | ||
|
||
for /F %%i in ('where /r "%SATELLITE_HOME%\bin" skywalking-satellite*windows*') do ( set SATELLITE_EXEC=%%i) | ||
|
||
start "%SATELLITE_PROCESS_TITLE%" %SATELLITE_EXEC% start --config="%SATELLITE_HOME%\configs\satellite_config.yaml" | ||
|
||
endlocal |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Deploy on Kubernetes | ||
|
||
It could help you run the Satellite as a gateway in Kubernetes environment. | ||
|
||
## Install | ||
|
||
We recommend install the Satellite by `helm`, follow command below, it could start the latest release version of SkyWalking Backend, UI and Satellite. | ||
|
||
```shell | ||
export SKYWALKING_RELEASE_NAME=skywalking # change the release name according to your scenario | ||
export SKYWALKING_RELEASE_NAMESPACE=default # change the namespace to where you want to install SkyWalking | ||
export REPO=skywalking | ||
|
||
helm repo add ${REPO} https://apache.jfrog.io/artifactory/skywalking-helm | ||
helm install "${SKYWALKING_RELEASE_NAME}" ${REPO}/skywalking -n "${SKYWALKING_RELEASE_NAMESPACE}" \ | ||
--set oap.image.tag=8.8.1 \ | ||
--set oap.storageType=elasticsearch \ | ||
--set ui.image.tag=8.8.1 \ | ||
--set elasticsearch.imageTag=6.8.6 \ | ||
--set satellite.enabled=true \ | ||
--set satellite.image.tag=v0.4.0 | ||
``` | ||
|
||
## Change Address | ||
|
||
After the Satellite and Backend started, need to change the address from agent/node. Then the satellite could load balance the request from agent/node to OAP backend. | ||
|
||
Such as in Java Agent, you should change the property value in `collector.backend_service` forward to this: `skywalking-satellite.${SKYWALKING_RELEASE_NAMESPACE}:11800`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
docs/en/setup/examples/feature/enable-disable-channel/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Enable/Disable Channel | ||
|
||
Different channels mean that different protocols can be transparently transmitted to upstream services(OAP). | ||
|
||
## Config | ||
|
||
In the Satellite configuration, a channel is represented under the configured `pipes`. By default, we open all channels and process all known protocols. | ||
|
||
You could **delete** the channel if you don't want to receive and transmit in satellite. | ||
|
||
After restart the satellite service, then the channel what you delete is disable. |
File renamed without changes.
File renamed without changes.
21 changes: 0 additions & 21 deletions
21
docs/en/setup/examples/forward-agent-data-to-oap-server/README.md
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.