rxjava-slf4j-mdc-hook

An RxJava hook which enables SLF4J' MDC propagation.

License

License

Categories

Categories

SLF4J Application Layer Libs Logging RxJava Container Microservices Reactive libraries
GroupId

GroupId

io.github.bmcstdio
ArtifactId

ArtifactId

rxjava-slf4j-mdc-hook
Last Version

Last Version

1.1.2
Release Date

Release Date

Type

Type

jar
Description

Description

rxjava-slf4j-mdc-hook
An RxJava hook which enables SLF4J' MDC propagation.
Project URL

Project URL

https://github.com/bmcstdio/rxjava-slf4j-mdc-hook
Source Code Management

Source Code Management

https://github.com/bmcstdio/rxjava-slf4j-mdc-hook.git

Download rxjava-slf4j-mdc-hook

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.bmcstdio/rxjava-slf4j-mdc-hook/ -->
<dependency>
    <groupId>io.github.bmcstdio</groupId>
    <artifactId>rxjava-slf4j-mdc-hook</artifactId>
    <version>1.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.bmcstdio/rxjava-slf4j-mdc-hook/
implementation 'io.github.bmcstdio:rxjava-slf4j-mdc-hook:1.1.2'
// https://jarcasting.com/artifacts/io.github.bmcstdio/rxjava-slf4j-mdc-hook/
implementation ("io.github.bmcstdio:rxjava-slf4j-mdc-hook:1.1.2")
'io.github.bmcstdio:rxjava-slf4j-mdc-hook:jar:1.1.2'
<dependency org="io.github.bmcstdio" name="rxjava-slf4j-mdc-hook" rev="1.1.2">
  <artifact name="rxjava-slf4j-mdc-hook" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.bmcstdio', module='rxjava-slf4j-mdc-hook', version='1.1.2')
)
libraryDependencies += "io.github.bmcstdio" % "rxjava-slf4j-mdc-hook" % "1.1.2"
[io.github.bmcstdio/rxjava-slf4j-mdc-hook "1.1.2"]

Dependencies

runtime (2)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.22
io.reactivex : rxjava jar 1.2.6

Project Modules

There are no modules declared in this project.

rxjava-slf4j-mdc-hook

Build Status codecov

An RxJava hook which enables SLF4J's MDC propagation.

Usage

If you're using RxJava ≥ 1.1.7:

RxJavaHooks.setOnScheduleAction(new MdcPropagatingOnScheduleAction());

If you're using RxJava ≤ 1.1.6:

RxJavaPlugins.getInstance().registerSchedulersHook(new RxJavaSchedulersHook() {
  @Override
  public Action0 onSchedule(final Action0 action) {
    return new MdcPropagatingAction(action);
  }
});

Note: Both RxJavaPlugins#getInstance() and RxJavaSchedulersHook#onSchedule(Action0) are deprecated since 1.1.7.

Binaries

rxjava-slf4j-mdc-hook is available from both JCenter and Maven Central:

Gradle:

compile 'io.github.bmcstdio:rxjava-slf4j-mdc-hook:1.1.2'

Maven:

<dependency>
  <groupId>io.github.bmcstdio</groupId>
  <artifactId>rxjava-slf4j-mdc-hook</artifactId>
  <version>1.1.2</version>
</dependency>

Building

$ git clone https://github.com/brunomcustodio/rxjava-slf4j-mdc-hook.git
$ cd rxjava-slf4j-mdc-hook
$ ./gradlew build

License

Copyright 2016-2017 brunomcustodio

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Versions

Version
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0