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

Commit

Permalink
preparing for release
Browse files Browse the repository at this point in the history
  • Loading branch information
markxnelson committed Mar 16, 2019
1 parent 1358ad3 commit 44b4c21
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/WebLogicLoggingExporter.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
*
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
*/
Expand Down
5 changes: 5 additions & 0 deletions samples/run-elk-local.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
#!/bin/bash
# Copyright 2018, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.

# start elasticsearch...
docker run -d \
--name elasticsearch \
-p 9200:9200 \
-p 9300:9300 \
-e "discovery.type=single-node" \
docker.elastic.co/elasticsearch/elasticsearch:6.2.2

# start kibana...
docker run -d \
--name kibana \
-p 5601:5601 \
Expand Down
3 changes: 3 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright 2018, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.

# Required metadata
sonar.projectKey=weblogic-logging-exporter
sonar.projectName=WebLogic Logging Exporter
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/weblogic/logging/exporter/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Config {
public static final int DEFAULT_PORT = 9200;
public static final String DEFAULT_INDEX_NAME = "wls";
public static final int DEFAULT_BULK_SIZE = 1;
private static final String DEFAULT_DOMAIN_UID = "unknown";
public static final String DEFAULT_DOMAIN_UID = "unknown";

private static final String HOST = "publishHost";
private static final String PORT = "publishPort";
Expand Down

0 comments on commit 44b4c21

Please sign in to comment.