Skip to content

Commit 12ed8ba

Browse files
committed
remove report files and add config file
1 parent 541cfd3 commit 12ed8ba

File tree

1,666 files changed

+95
-32082
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,666 files changed

+95
-32082
lines changed

.classpath

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="test" value="true"/>
17+
<attribute name="optional" value="true"/>
18+
<attribute name="maven.pomderived" value="true"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
22+
<attributes>
23+
<attribute name="test" value="true"/>
24+
<attribute name="maven.pomderived" value="true"/>
25+
</attributes>
26+
</classpathentry>
27+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9"/>
28+
<classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
29+
<attributes>
30+
<attribute name="maven.pomderived" value="true"/>
31+
</attributes>
32+
</classpathentry>
33+
<classpathentry kind="src" path="target/generated-sources/annotations">
34+
<attributes>
35+
<attribute name="optional" value="true"/>
36+
</attributes>
37+
</classpathentry>
38+
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
39+
<attributes>
40+
<attribute name="optional" value="true"/>
41+
<attribute name="test" value="true"/>
42+
</attributes>
43+
</classpathentry>
44+
<classpathentry kind="output" path="target/classes"/>
45+
</classpath>

.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>DBMonitoring</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.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>

config/common.properties

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DB Setting Contents
2+
db.setting.contents=host,sid,user,password,port,driver,url
3+
db.setting.oracle.driver.combo=thin
4+
5+
# Server Setting Contents
6+
server.setting.dateformat.combo=yyyy-MM-dd,EEE MMM dd HH:mm:ss yyyy
7+
8+
# DB Monitoring Contents
9+
db.monitoring.contents=Archive Usage,TableSpace Usage,ASM Disk Usage
10+
11+
# Server monitoring Contents
12+
server.monitoring.contents=OS Disk Usage,Alert Log

config/config_definition.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="ISO-8859-1" ?>
2+
3+
<configuration>
4+
<properties fileName="remember.properties" config-name="rememberConfig"/>
5+
<!-- <properties fileName="application.properties" config-name="appConfig"/> -->
6+
<properties fileName="common.properties" config-name="commonConfig"/>
7+
</configuration>

config/remember.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
# Remember Properties File START
3+
# Last Use Properties File Path
4+
filepath.config.remember=./config/remember.properties
5+
filepath.config.common=./config/common.properties
6+
filepath.config.lastuse = ./config/connectioninfo/connection.properties
7+
8+
# Remember Properties File END

0 commit comments

Comments
 (0)