Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 5fc7c43

Browse files
authored
Merge pull request #8 from oracle/release/1.0.0
prepare for 1.0.0 release
2 parents aaf0f1c + 34d839b commit 5fc7c43

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The WebLogic Logging Exporter adds a log event handler to WebLogic Server,
77
such that WebLogic Server logs can be integrated into [Elastic Stack](https://www.elastic.co/products)
88
in Kubernetes directly, by using the [Elasticsearch](https://www.elastic.co/products/elasticsearch) REST API.
99

10-
The current version of the WebLogic Logging Exporter is 0.1, which was released on March 16, 2019.
10+
The current version of the WebLogic Logging Exporter is 1.0.0, which was released on September 6, 2019.
1111
This version supports pushing logs into Elasticsearch using the REST API.
1212

1313
The following features are planned for the next few releases:
@@ -92,15 +92,15 @@ git clone [email protected]:oracle/wls-logging-exporter.git
9292
mvn install
9393
```
9494

95-
The `weblogic-logging-exporter-0.1.jar` will be available under the `target` directory.
95+
The `weblogic-logging-exporter-1.0.0.jar` will be available under the `target` directory.
9696

9797
## Installation
9898

9999
This section outlines the steps that are required to add the Weblogic Logging Exporter to Weblogic Server.
100100

101101
1. Download or build the WebLogic Logging Exporter as described above.
102102

103-
1. Copy the `weblogic-logging-exporter-0.1.jar` into a suitable location, e.g. into your domain directory.
103+
1. Copy the `weblogic-logging-exporter-1.0.0.jar` into a suitable location, e.g. into your domain directory.
104104

105105
1. Add a startup class to your domain configuration.
106106

@@ -119,7 +119,7 @@ This section outlines the steps that are required to add the Weblogic Logging Ex
119119
</startup-class>
120120
```
121121
122-
1. Add `weblogic-logging-exporter.jar` and `snakeyaml-1.23.jar` to your classpath.
122+
1. Add `weblogic-logging-exporter-1.0.0.jar` and `snakeyaml-1.23.jar` to your classpath.
123123
124124
This project requires `snakeyaml` to parse the YAML configuration file. If you built the project locally,
125125
you can find this JAR file in your local maven repository at `~/.m2/repository/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar`.
@@ -132,7 +132,7 @@ This section outlines the steps that are required to add the Weblogic Logging Ex
132132
directory is `/u01/base_domain`):
133133
134134
```
135-
export CLASSPATH="/u01/base_domain/weblogic-logging-exporter-0.1.jar:/u01/base_domain/snakeyaml-1.23.jar:$CLASSPATH"
135+
export CLASSPATH="/u01/base_domain/weblogic-logging-exporter-1.0.0.jar:/u01/base_domain/snakeyaml-1.23.jar:$CLASSPATH"
136136
```
137137
138138
1. Create a configuration file for the WebLogic Logging Exporter.
@@ -147,7 +147,7 @@ This section outlines the steps that are required to add the Weblogic Logging Ex
147147
publishPort: 9200
148148
domainUID: domain1
149149
weblogicLoggingExporterEnabled: true
150-
weblogicLoggingIndexName: wls
150+
weblogicLoggingIndexName: domain1-wls
151151
weblogicLoggingExporterSeverity: Notice
152152
weblogicLoggingExporterBulkSize: 1
153153
weblogicLoggingExporterFilters:
@@ -158,6 +158,8 @@ This section outlines the steps that are required to add the Weblogic Logging Ex
158158
send the logs from multiple domains to the same Elasticsearch server. If you are using the WebLogic Kubernetes
159159
Operator, it is strongly recommended that you use the same `domainUID` value that you use for the domain.
160160
161+
It is also strongly recommended that you consider using a different Elastcsearch index name for each domain.
162+
161163
If you prefer to place the configuration file in a different location, you can set the environment variable
162164
`WEBLOGIC_LOGGING_EXPORTE_CONFIG_FILE` to point to the location of the file.
163165

pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>oracle.kubernetes</groupId>
88
<artifactId>weblogic-logging-exporter</artifactId>
99
<packaging>jar</packaging>
10-
<version>0.1</version>
10+
<version>1.0.0</version>
1111

1212
<name>WebLogic Logging Exporter</name>
1313
<description>An exporter that integrates WebLogic Server logs into ElasticSearch and Kibana</description>
@@ -52,7 +52,7 @@
5252
<plugin>
5353
<groupId>org.apache.maven.plugins</groupId>
5454
<artifactId>maven-compiler-plugin</artifactId>
55-
<version>3.6.1</version>
55+
<version>3.8.1</version>
5656
<configuration>
5757
<source>1.8</source>
5858
<target>1.8</target>
@@ -61,7 +61,7 @@
6161
<plugin>
6262
<groupId>com.coveo</groupId>
6363
<artifactId>fmt-maven-plugin</artifactId>
64-
<version>2.4.0</version>
64+
<version>2.9</version>
6565
<executions>
6666
<execution>
6767
<phase>test</phase>
@@ -74,7 +74,7 @@
7474
<!-- for junit 5 -->
7575
<plugin>
7676
<artifactId>maven-surefire-plugin</artifactId>
77-
<version>2.22.0</version>
77+
<version>2.22.2</version>
7878
<configuration>
7979
<!-- for future use
8080
<groups>acceptance | !feature-a</groups>
@@ -96,13 +96,13 @@
9696
</plugin>
9797
<plugin>
9898
<artifactId>maven-failsafe-plugin</artifactId>
99-
<version>2.22.0</version>
99+
<version>2.22.1</version>
100100
</plugin>
101101
<!-- end -->
102102
<plugin>
103103
<groupId>org.jacoco</groupId>
104104
<artifactId>jacoco-maven-plugin</artifactId>
105-
<version>0.8.3</version>
105+
<version>0.8.4</version>
106106
<executions>
107107
<execution>
108108
<goals>
@@ -180,13 +180,13 @@
180180
<dependency>
181181
<groupId>org.junit.jupiter</groupId>
182182
<artifactId>junit-jupiter-api</artifactId>
183-
<version>5.4.1</version>
183+
<version>5.5.1</version>
184184
<scope>test</scope>
185185
</dependency>
186186
<dependency>
187187
<groupId>org.junit.jupiter</groupId>
188188
<artifactId>junit-jupiter-engine</artifactId>
189-
<version>5.4.1</version>
189+
<version>5.5.1</version>
190190
<scope>test</scope>
191191
</dependency>
192192
<dependency>

sonar-project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Required metadata
55
sonar.projectKey=weblogic-logging-exporter
66
sonar.projectName=WebLogic Logging Exporter
7-
sonar.projectVersion=0.1
7+
sonar.projectVersion=1.0.0
88

99
# Comma-separated paths to directories with sources (required)
1010
sonar.sources=src/main/java

0 commit comments

Comments
 (0)