forked from pinpoint-apm/pinpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pinpoint-apm#8004] System monitoring
- Loading branch information
1 parent
8cdd56c
commit eb317a0
Showing
90 changed files
with
5,346 additions
and
5 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
12 changes: 12 additions & 0 deletions
12
collector/src/main/java/com/navercorp/pinpoint/collector/TotalCollectorApp.java
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,12 @@ | ||
package com.navercorp.pinpoint.collector; | ||
|
||
import org.springframework.boot.SpringBootConfiguration; | ||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; | ||
import org.springframework.context.annotation.ImportResource; | ||
|
||
@SpringBootConfiguration | ||
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class}) | ||
@ImportResource({ "classpath:applicationContext-collector.xml", "classpath:servlet-context-collector.xml"}) | ||
public class TotalCollectorApp { | ||
} |
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,121 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Configuration status="INFO"> | ||
<Properties> | ||
<Property name="default_logging_dir">logs</Property> | ||
<Property name="logging_dir">${sys:logging.file.path:-${default_logging_dir}}</Property> | ||
|
||
<Property name="rolling-date-format">%d{yyyy-MM-dd}</Property> | ||
<Property name="backupsize">1GB</Property> | ||
|
||
<Property name="console_message_pattern">%d{MM-dd HH:mm:ss.sss} [%15.15t] %clr{%-5level} %clr{%-40.40logger{1.}}{cyan}:%3L -- %msg%n</Property> | ||
<Property name="file_message_pattern">%d{MM-dd HH:mm:ss.sss} [%15.15t] %-5level %-40.40logger{1.}:%3L -- %msg%n</Property> | ||
</Properties> | ||
|
||
<Appenders> | ||
<Console name="console" target="system_out"> | ||
<PatternLayout pattern="${console_message_pattern}"/> | ||
</Console> | ||
|
||
<RollingFile name="rollingFile" filename="${logging_dir}/pinpoint-web.log" | ||
filepattern="${logging_dir}/pinpoint-web-${rolling-date-format}-%i.log" > | ||
<PatternLayout> | ||
<Pattern>${file_message_pattern}</Pattern> | ||
</PatternLayout> | ||
<Policies> | ||
<TimeBasedTriggeringPolicy interval="1" modulate="true"/> | ||
<SizeBasedTriggeringPolicy size="${backupsize}"/> | ||
</Policies> | ||
<DefaultRolloverStrategy max="20"> | ||
<Delete basePath="${logging_dir}/" maxDepth="1"> | ||
<IfFileName glob="pinpoint-web-*-*.log"> | ||
<IfAny> | ||
<IfAccumulatedFileSize exceeds="1GB" /> | ||
<IfAccumulatedFileCount exceeds="50" /> | ||
</IfAny> | ||
</IfFileName> | ||
</Delete> | ||
</DefaultRolloverStrategy> | ||
</RollingFile> | ||
|
||
</Appenders> | ||
|
||
<Loggers> | ||
<Logger name="com.navercorp.pinpoint" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="com.navercorp.pinpoint.web.filter" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="com.navercorp.pinpoint.web.controller" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="com.navercorp.pinpoint.web.applicationmap" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="com.navercorp.pinpoint.web.mapper" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="com.navercorp.pinpoint.web.service" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="com.navercorp.pinpoint.web.dao" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="com.navercorp.pinpoint.web.mapper.ApiMetaDataMapper" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="org.mybatis" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="org.springframework" level="INFO" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="org.springframework.security" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="org.apache.zookeeper" level="INFO" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Logger name="org.apache.hadoop.hbase" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
<Logger name="org.apache.hadoop.ipc" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
<Logger name="org.apache.hadoop" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Logger> | ||
|
||
<Root level="DEBUG"> | ||
<AppenderRef ref="console"/> | ||
<AppenderRef ref="rollingFile"/> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |
Binary file not shown.
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,224 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright 2019 NAVER Corp. | ||
~ | ||
~ 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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.navercorp.pinpoint</groupId> | ||
<artifactId>pinpoint</artifactId> | ||
<version>2.3.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>pinpoint-metric</artifactId> | ||
<name>pinpoint-metric</name> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<jdk.version>1.8</jdk.version> | ||
<jdk.home>${env.JAVA_8_HOME}</jdk.home> | ||
<test.jdk.home>${jdk.home}</test.jdk.home> | ||
<sniffer.artifactid>java18</sniffer.artifactid> | ||
<spring.version>${spring5.version}</spring.version> | ||
|
||
<log4j2.version>${log4j2-jdk8.version}</log4j2.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.navercorp.pinpoint</groupId> | ||
<artifactId>pinpoint-commons</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.navercorp.pinpoint</groupId> | ||
<artifactId>pinpoint-commons-server</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-collections</groupId> | ||
<artifactId>commons-collections</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
</dependency> | ||
<!-- Spring depedencies --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-webmvc</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-jdbc</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context-support</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.zookeeper</groupId> | ||
<artifactId>zookeeper</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot</artifactId> | ||
<version>${spring.boot.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
<version>${spring.boot.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-logging</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-log4j2</artifactId> | ||
<version>${spring.boot.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
</dependency> | ||
|
||
<!-- Mybatis dependecies --> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-dbcp2</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mybatis</groupId> | ||
<artifactId>mybatis</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mybatis</groupId> | ||
<artifactId>mybatis-spring</artifactId> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-tx</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-jdbc</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.pinot</groupId> | ||
<artifactId>pinot-java-client</artifactId> | ||
<version>0.6.0</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.pinot</groupId> | ||
<artifactId>pinot-jdbc-client</artifactId> | ||
<version>0.6.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.kafka</groupId> | ||
<artifactId>kafka-clients</artifactId> | ||
<version>2.3.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.kafka</groupId> | ||
<artifactId>spring-kafka</artifactId> | ||
<version>2.3.10.RELEASE</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.kafka</groupId> | ||
<artifactId>spring-kafka-test</artifactId> | ||
<version>2.3.10.RELEASE</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<!-- Logging dependencies --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-slf4j-impl</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-jcl</artifactId> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
|
||
</project> |
14 changes: 14 additions & 0 deletions
14
metric/src/main/java/com/navercorp/pinpoint/metric/collector/MetricCollectorApp.java
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,14 @@ | ||
package com.navercorp.pinpoint.metric.collector; | ||
|
||
import org.springframework.boot.SpringBootConfiguration; | ||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; | ||
import org.springframework.context.annotation.ImportResource; | ||
import org.springframework.context.annotation.Profile; | ||
|
||
@SpringBootConfiguration | ||
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class}) | ||
@ImportResource({ "classpath:pinot-collector/applicationContext-collector-pinot.xml", "classpath:pinot-collector/servlet-context-collector-pinot.xml"}) | ||
@Profile("metric") | ||
public class MetricCollectorApp { | ||
} |
Oops, something went wrong.