forked from osiegmar/logback-gelf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional-field-mapper extension point as described in osiegmar#55
- Loading branch information
Neeme Praks
committed
Nov 25, 2020
1 parent
655017e
commit e3f0b15
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
src/main/java/de/siegmar/logbackgelf/GelfAdditionalFieldMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package de.siegmar.logbackgelf; | ||
|
||
import ch.qos.logback.classic.spi.ILoggingEvent; | ||
|
||
public interface GelfAdditionalFieldMapper { | ||
|
||
KeyValue<String, Object> mapAdditionalField(ILoggingEvent event); | ||
|
||
class KeyValue<K, V> { | ||
final K key; | ||
final V value; | ||
|
||
public KeyValue(K key, V value) { | ||
this.key = key; | ||
this.value = value; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return key + "=" + value; | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters