Skip to content

Commit 0aac148

Browse files
committed
Merge pull request #3 from nices96/master
Describe available alert types
2 parents 500ded4 + 44af288 commit 0aac148

File tree

4 files changed

+45
-0
lines changed

4 files changed

+45
-0
lines changed

.classpath

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
5+
<attributes>
6+
<attribute name="owner.project.facets" value="java"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry combineaccessrules="false" kind="src" path="/scouter.common"/>
10+
<classpathentry combineaccessrules="false" kind="src" path="/scouter.server"/>
11+
<classpathentry kind="lib" path="lib/activation-1.1.1.jar"/>
12+
<classpathentry kind="lib" path="lib/commons-email-1.4.jar"/>
13+
<classpathentry kind="lib" path="lib/javax.mail-1.5.2.jar"/>
14+
<classpathentry kind="output" path="bin"/>
15+
</classpath>

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.class
2+
.settings
23

34
# Mobile Tools for Java (J2ME)
45
.mtj.tmp/

.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>scouter-plugin-server-alert-email</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
21+
<nature>org.eclipse.jdt.core.javanature</nature>
22+
</natures>
23+
</projectDescription>

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
### Scouter server plugin to send a alert via email
33

44
- 본 프로젝트는 스카우터 서버 플러그인으로써 서버에서 발생한 Alert 메시지를 Email로 발송하는 역할을 한다.
5+
- 현재 지원되는 Alert의 종류는 다음과 같다.
6+
- Agent의 CPU (warning / fatal)
7+
- Agent의 Memory (warning / fatal)
8+
- Agent의 Disk (warning / fatal)
9+
- 신규 Agent 연결
10+
- Agent의 연결 해제 (연결 해제된 Agent의 재접속은 Scouter Server 내부 이슈로 지연)
511

612
### Properties (스카우터 서버 설치 경로 하위의 conf/scouter.conf)
713
* **_ext\_plugin\_email\_send_alert_** : Email 발송 여부 (true / false) - 기본 값은 false

0 commit comments

Comments
 (0)