You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: readme.md
+18-9
Original file line number
Diff line number
Diff line change
@@ -27,13 +27,22 @@ In short, let’s begin from a brief review of main features provided by logstas
27
27
4. It is auto-configurable Spring Boot library – you don’t have to do anything more than including it as a dependency to your application to make it work
By default, the library is enabled, but tries to locate Logback configuration inside your application to settings for Logstash appender. If such appender won’t be found, the library uses Spring Boot default logging configuration, which does not include Logstash appender. To force it use auto-configured appender definition inside library we have to set property logging.logstash.enabled to `true`.
58
+
By default, the library is enabled, but tries to locate Logback configuration inside your application to settings for Logstash appender. If such appender won’t be found, the library uses Spring Boot default logging configuration, which does not include Logstash appender. To force it use auto-configured appender definition inside library we have to set property `logging.logstash.enabled` to `true`.
50
59
```
51
60
logging.logstash:
52
61
enabled: true
53
-
url: 192.168.99.100:5000
62
+
url: loki.example.com:5000
54
63
```
55
64
56
65
## Manual add jar to pom.xml
57
66
58
-
Add `reactive-logstash-logging-spring-boot-starter-2.0.1.pom` to `${basedir}/dependencies`
67
+
Add `reactive-logstash-logging-spring-boot-starter-2.0.3.pom` to `${basedir}/dependencies`
59
68
60
-
Add `pom.xml` to `${basedir}/dependencies` and rename to `reactive-logstash-logging-spring-boot-starter-1.4.0.RELEASE.pom`
69
+
Add `pom.xml` to `${basedir}/dependencies` and rename to `reactive-logstash-logging-spring-boot-starter-2.0.3.pom`
61
70
62
71
Add this script to `pom.xml` in plugins section.
63
72
@@ -69,7 +78,7 @@ Add this script to `pom.xml` in plugins section.
0 commit comments