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

Commit 44b4c21

Browse files
committed
preparing for release
1 parent 1358ad3 commit 44b4c21

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

samples/WebLogicLoggingExporter.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
55
*/

samples/run-elk-local.sh

+5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
#!/bin/bash
2+
# Copyright 2018, Oracle and/or its affiliates. All rights reserved.
3+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4+
5+
# start elasticsearch...
26
docker run -d \
37
--name elasticsearch \
48
-p 9200:9200 \
59
-p 9300:9300 \
610
-e "discovery.type=single-node" \
711
docker.elastic.co/elasticsearch/elasticsearch:6.2.2
812

13+
# start kibana...
914
docker run -d \
1015
--name kibana \
1116
-p 5601:5601 \

sonar-project.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright 2018, Oracle and/or its affiliates. All rights reserved.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
3+
14
# Required metadata
25
sonar.projectKey=weblogic-logging-exporter
36
sonar.projectName=WebLogic Logging Exporter

src/main/java/weblogic/logging/exporter/config/Config.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class Config {
2323
public static final int DEFAULT_PORT = 9200;
2424
public static final String DEFAULT_INDEX_NAME = "wls";
2525
public static final int DEFAULT_BULK_SIZE = 1;
26-
private static final String DEFAULT_DOMAIN_UID = "unknown";
26+
public static final String DEFAULT_DOMAIN_UID = "unknown";
2727

2828
private static final String HOST = "publishHost";
2929
private static final String PORT = "publishPort";

0 commit comments

Comments
 (0)