@@ -7,7 +7,7 @@ The WebLogic Logging Exporter adds a log event handler to WebLogic Server,
77such that WebLogic Server logs can be integrated into [ Elastic Stack] ( https://www.elastic.co/products )
88in 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.
1111This version supports pushing logs into Elasticsearch using the REST API.
1212
1313The following features are planned for the next few releases:
@@ -92,15 +92,15 @@ git clone git@orahub.oraclecorp.com:oracle/wls-logging-exporter.git
9292mvn 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
9999This section outlines the steps that are required to add the Weblogic Logging Exporter to Weblogic Server.
100100
1011011 . 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
1051051 . 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
1381381. 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
0 commit comments