提交 f7700d50 编写于 作者: P peng-yongsheng

Merge branch 'master' into feature/history-data-delete

......@@ -20,9 +20,9 @@ do
CLASSPATH="$i:$CLASSPATH"
done
WEBUI_OPTIONS=" -Dcollector.logDir=${COLLECT_LOG_DIR}"
COLLECTOR_OPTIONS=" -Dcollector.logDir=${COLLECT_LOG_DIR}"
eval exec "\"$_RUNJAVA\" ${JAVA_OPTS} ${WEBUI_OPTIONS} -classpath $CLASSPATH org.skywalking.apm.collector.boot.CollectorBootStartUp \
eval exec "\"$_RUNJAVA\" ${JAVA_OPTS} ${COLLECTOR_OPTIONS} -classpath $CLASSPATH org.skywalking.apm.collector.boot.CollectorBootStartUp \
2>${COLLECT_LOG_DIR}/collector.log 1> /dev/null &"
if [ $? -eq 0 ]; then
......
FROM openjdk:8u111-jdk
ENV ZK_ADDRESSES=127.0.0.1:2181 \
ES_CLUSTER_NAME=CollectorDBCluster \
ES_ADDRESSES=localhost:9300 \
BIND_HOST=localhost \
NAMING_BIND_HOST=localhost \
NAMING_BIND_PORT=10800 \
REMOTE_BIND_PORT=11800 \
AGENT_GRPC_BIND_PORT=11800 \
AGENT_JETTY_BIND_HOST=localhost \
AGENT_JETTY_BIND_PORT=12800 \
UI_JETTY_BIND_PORT=12800 \
UI_JETTY_BIND_HOST=localhost
ADD skywalking-collector.tar.gz /usr/local
COPY collectorService.sh /usr/local/skywalking-collector/bin
COPY log4j2.xml /usr/local/skywalking-collector/config
COPY application.yml /usr/local/skywalking-collector/config
COPY docker-entrypoint.sh /
RUN chmod +x /usr/local/skywalking-collector/bin/collectorService.sh && chmod +x /docker-entrypoint.sh
EXPOSE 10800
EXPOSE 11800
EXPOSE 12800
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["/usr/local/skywalking-collector/bin/collectorService.sh"]
cluster:
zookeeper:
hostPort: {ZK_ADDRESSES}
sessionTimeout: 100000
naming:
jetty:
host: {NAMING_BIND_HOST}
port: {NAMING_BIND_PORT}
context_path: /
remote:
gRPC:
host: {BIND_HOST}
port: {REMOTE_BIND_PORT}
agent_gRPC:
gRPC:
host: {BIND_HOST}
port: {AGENT_GRPC_BIND_PORT}
agent_jetty:
jetty:
host: {AGENT_JETTY_BIND_HOST}
port: {AGENT_JETTY_BIND_PORT}
context_path: /
agent_stream:
default:
buffer_file_path: ../buffer/
buffer_offset_max_file_size: 10M
buffer_segment_max_file_size: 500M
ui:
jetty:
host: {UI_JETTY_BIND_HOST}
port: {UI_JETTY_BIND_PORT}
context_path: /
storage:
elasticsearch:
cluster_name: {ES_CLUSTER_NAME}
cluster_transport_sniffer: true
cluster_nodes: {ES_ADDRESSES}
index_shards_number: 2
index_replicas_number: 0
history_delete_before_days: 3
#!/usr/bin/env sh
PRG="$0"
PRGDIR=`dirname "$PRG"`
[ -z "$COLLECTOR_HOME" ] && COLLECTOR_HOME=`cd "$PRGDIR/.." >/dev/null; pwd`
COLLECT_LOG_DIR="${COLLECTOR_HOME}/logs"
JAVA_OPTS=" -Xms256M -Xmx512M"
if [ ! -d "${COLLECTOR_HOME}/logs" ]; then
mkdir -p "${COLLECT_LOG_DIR}"
fi
_RUNJAVA=${JAVA_HOME}/bin/java
[ -z "$JAVA_HOME" ] && _RUNJAVA=java
CLASSPATH="$COLLECTOR_HOME/config:$CLASSPATH"
for i in "$COLLECTOR_HOME"/libs/*.jar
do
CLASSPATH="$i:$CLASSPATH"
done
${_RUNJAVA} ${JAVA_OPTS} -classpath $CLASSPATH org.skywalking.apm.collector.boot.CollectorBootStartUp
#!/bin/sh
echo "replace {ZK_ADDRESSES} to ${ZK_ADDRESSES}"
eval sed -i -e 's/\{ZK_ADDRESSES\}/${ZK_ADDRESSES}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {ES_CLUSTER_NAME} to ${ES_CLUSTER_NAME}"
eval sed -i -e 's/\{ES_CLUSTER_NAME\}/${ES_CLUSTER_NAME}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {ES_ADDRESSES} to ${ES_ADDRESSES}"
eval sed -i -e 's/\{ES_ADDRESSES\}/${ES_ADDRESSES}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {BIND_HOST} to ${BIND_HOST}"
eval sed -i -e 's/\{BIND_HOST\}/${BIND_HOST}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {NAMING_BIND_HOST} to ${NAMING_BIND_HOST}"
eval sed -i -e 's/\{NAMING_BIND_HOST\}/${NAMING_BIND_HOST}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {NAMING_BIND_PORT} to ${NAMING_BIND_PORT}"
eval sed -i -e 's/\{NAMING_BIND_PORT\}/${NAMING_BIND_PORT}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {REMOTE_BIND_PORT} to ${REMOTE_BIND_PORT}"
eval sed -i -e 's/\{REMOTE_BIND_PORT\}/${REMOTE_BIND_PORT}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {AGENT_GRPC_BIND_PORT} to ${AGENT_GRPC_BIND_PORT}"
eval sed -i -e 's/\{AGENT_GRPC_BIND_PORT\}/${AGENT_GRPC_BIND_PORT}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {AGENT_JETTY_BIND_HOST} to ${AGENT_JETTY_BIND_HOST}"
eval sed -i -e 's/\{AGENT_JETTY_BIND_HOST\}/${AGENT_JETTY_BIND_HOST}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {AGENT_JETTY_BIND_PORT} to ${AGENT_JETTY_BIND_PORT}"
eval sed -i -e 's/\{AGENT_JETTY_BIND_PORT\}/${AGENT_JETTY_BIND_PORT}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {UI_JETTY_BIND_PORT} to ${UI_JETTY_BIND_PORT}"
eval sed -i -e 's/\{UI_JETTY_BIND_PORT\}/${UI_JETTY_BIND_PORT}/' /usr/local/skywalking-collector/config/application.yml
echo "replace {UI_JETTY_BIND_HOST} to ${UI_JETTY_BIND_HOST}"
eval sed -i -e 's/\{UI_JETTY_BIND_HOST\}/${UI_JETTY_BIND_HOST}/' /usr/local/skywalking-collector/config/application.yml
exec "$@"
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2017, OpenSkywalking Organization All rights reserved.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
~ Project repository: https://github.com/OpenSkywalking/skywalking
-->
<Configuration status="info">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout charset="UTF-8" pattern="%d - %c -%-4r [%t] %-5p %x - %m%n"/>
</Console>
</Appenders>
<Loggers>
<logger name="org.eclipse.jetty" level="INFO"/>
<logger name="org.apache.zookeeper" level="INFO"/>
<logger name="org.skywalking.apm.collector.agent.grpc.handler.JVMMetricsServiceHandler" level="INFO"/>
<logger name="org.skywalking.apm.collector.stream.timer.PersistenceTimer" level="INFO"/>
<logger name="io.grpc.netty" level="INFO"/>
<Root level="info">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>
......@@ -30,6 +30,11 @@
<artifactId>apm-collector-boot</artifactId>
<packaging>jar</packaging>
<properties>
<docker.image.name>skywalking/skywalking-collector</docker.image.name>
<docker.image.version>${version}</docker.image.version>
</properties>
<dependencies>
<dependency>
<groupId>org.yaml</groupId>
......@@ -148,7 +153,7 @@
</dependencies>
<build>
<finalName>Skywalking-Collector</finalName>
<finalName>skywalking-collector</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
......@@ -191,10 +196,31 @@
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<outputDirectory>${project.basedir}/../../packages</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${docker.plugin.version}</version>
<configuration>
<skipDocker>false</skipDocker>
<imageName>${docker.image.name}</imageName>
<imageTags>
<imageTag>${docker.image.version}</imageTag>
</imageTags>
<dockerDirectory>${project.basedir}/docker</dockerDirectory>
<resources>
<resource>
<targetPath>/</targetPath>
<directory>${project.basedir}/../../packages</directory>
<include>${build.finalName}.tar.gz</include>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
</project>
......@@ -17,7 +17,7 @@ agent.application_code=Your_ApplicationName
# Examples:
# Single collector:SERVERS="127.0.0.1:8080"
# Collector cluster:SERVERS="10.2.45.126:8080,10.2.45.127:7600"
collector.servers=127.0.0.1:12800
collector.servers=127.0.0.1:10800
# Logging level
logging.level=DEBUG
......@@ -36,10 +36,11 @@ services:
- ZK_ADDRESSES=zookeeper-server:2181
- ES_ADDRESSES=es-server:9300
- BIND_HOST=0.0.0.0
- UI_BIND_HOST=skywalking-collector
- CLUSTER_BIND_HOST=0.0.0.0
- AGENT_JETTY_BIND_HOST=skywalking-collector
- NAMING_BIND_HOST=skywalking-collector
- UI_JETTY_BIND_HOST=skywalking-collector
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:10800/agentstream/grpc"]
test: ["CMD", "curl", "-f", "http://skywalking-collector:10800/agent/gRPC"]
interval: 10s
timeout: 10s
retries: 5
......
## Documents
[![version](https://img.shields.io/badge/document--version-3.2.5--2017-green.svg)]()
[![cn doc](https://img.shields.io/badge/document-中文-blue.svg)](README_ZH.md)
* Getting Started
......@@ -24,4 +25,3 @@
* [Skywalking 3 Cross Process Propagation Headers Protocol, v1.0](en/Skywalking-3-Cross-Process-Propagation-Headers-Protocol.md)
* FAQ
\ No newline at end of file
## 中文文档
[![version](https://img.shields.io/badge/document--version-3.2.5--2017-green.svg)]()
[![EN doc](https://img.shields.io/badge/document-English-blue.svg)](README.md)
* [项目简介](/README_ZH.md)
......@@ -29,4 +30,4 @@
* [探针与Collector间网络协议,v3.2+](cn/How-to-communicate-with-the-collector-CN.md)
* FAQ
* [Trace查询有数据,但是没有拓扑图和JVM数据?](cn/FAQ/Why-have-traces-no-others-CN.md)
* [加载探针,Console被GRPC日志刷屏](cn/FAQ/Too-many-gRPC-logs-CN.md)
\ No newline at end of file
* [加载探针,Console被GRPC日志刷屏](cn/FAQ/Too-many-gRPC-logs-CN.md)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册