Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Christian Grobmeier on Log4j 2
Search
Enterprise Java User Group Austria
November 26, 2014
Technology
210
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Christian Grobmeier on Log4j 2
Enterprise Java User Group Austria
November 26, 2014
More Decks by Enterprise Java User Group Austria
See All by Enterprise Java User Group Austria
Gerrit Grunwald on What the CRaC... SUPERFAST JVM STARTUP
ejug
2
210
Spring Framework 5.2 - Core Container Revisited
ejug
0
190
Andreas Caternberg on Jenkins Pipelines
ejug
1
800
Martin Ahrer on Continuous Delivery Infrastructure With Docker
ejug
0
170
Dirk Mahler on Software Analyse mit jQAssistant & Neo4j
ejug
1
310
Christoph Strobl on Spring Data & Hypermedia
ejug
0
160
Stefan Armbruster on Graph Modelling Antipatterns
ejug
1
140
Stefan Armbruster on Introduction into Neo4J
ejug
1
100
Michael Nitschinger on Building a reactive Couchbase driver for the JVM
ejug
0
160
Other Decks in Technology
See All in Technology
信頼できるテスティングAIをどう育てるか?
odan611
0
180
AI ネイティブな組織に Gemini Enterprise Agent Platform がなぜ必要なのか
asei
1
130
Atlassian Cloudサポート業務でのAIエージェント活用事例
smt7174
0
190
AIで楽になるはずが、なぜ疲れる?
kinopeee
0
150
AI研修(Day2)【MIXI 26新卒技術研修】
mixi_engineers
PRO
2
1.6k
PLaMoを毎日の開発で使い育てていく
pfn
PRO
0
160
AI エージェント時代のデジタルアイデンティティ
fujie
2
1.3k
なぜ、あなたのエージェントは言うことを聞かないのか
segavvy
1
610
基調講演:人とAIをつなぐIoTの今と未来 ー 「フィジカル」と「デジタル」が出会うその先へ【SORACOM Discovery 2026】
soracom
PRO
0
370
QAタスクをスキル化したいときに考えること
aomoriringo
0
140
StepFunctionsとGraphRAGを活用した暗黙知活用のためのRAG基盤
yakumo
0
190
実践が先生だった— 新卒サーバーエンジニア1年目のリアル
mixi_engineers
PRO
0
220
Featured
See All Featured
Technical Leadership for Architectural Decision Making
baasie
3
450
Producing Creativity
orderedlist
PRO
348
40k
What's in a price? How to price your products and services
michaelherold
247
13k
Fashionably flexible responsive web design (full day workshop)
malarkey
408
67k
Avoiding the “Bad Training, Faster” Trap in the Age of AI
tmiket
0
200
Are puppies a ranking factor?
jonoalderson
1
3.7k
WCS-LA-2024
lcolladotor
0
780
The agentic SEO stack - context over prompts
schlessera
0
860
Testing 201, or: Great Expectations
jmmastey
46
8.2k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.8k
ラッコキーワード サービス紹介資料
rakko
1
4.1M
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
1
360
Transcript
Apache Log4j 2
Christian Grobmeier @grobmeier http://www.grobmeier.de ASF V. P. Logging Services
http://www.leanpub.com/thezenprogrammer/c/linz
(hopefully) soon: www.understandinglog4j.com
Why should you log?
ASF FIRE BRIGADE
Log4j1, Log4j2 log4php Chainsaw log4net log4cxx
How do you log?
We are stable! Log4j 2.1
None
CHALLENGES
SPEED!
Failsafe. Reliable.
Compability.
Taste.
L o g g i n g with Duke
Too much t a s t e . . .
m a k e s headache! Think on: log4j, logback, JUL, TinyLog, AVSL
Pills: Some Abstraction Layers
Commons Logging log4j 1 log4j 2 logback JUL Which pill?
slf4j Commons Logging log4j 1 log4j 2 logback JUL AVSL
Which pill?
slf4j Commons Logging log4j 1 log4j 2 logback JUL AVSL
New kids on the block log4j 2
log4j 2.x is the future of log4j
New in log4j 2.x
Instead: if (logger.isDebugEnabled()) logger.info("Hi, " + u.getA() + “ “
+ u.getB()); Write: logger.info("Hi, {} {} ", u.getA(), u.getB()); API++
Marker: Marker SQL_MARKER = MarkerManager.getMarker("SQL"); logger.debug( SQL_MARKER, "SELECT * FROM
{}", table); Better Filter
@Plugin(name = "Mine", type = "Core", elementType = "appender") public
class Mine extends AppenderBase { private Mine(String name, Filter f) { super(name, f, null); } public void append(LogEvent e) { … } Plugins
@PluginFactory public static Mine create( @PluginAttr("name") String n, @PluginElement("filters") Filter
f) { return new Mine(n, f); } Plugins
<appenders> <Mine name="Hello_Linz" …> <PatternLayout pattern="%d{HH:mm} %msg%n"/> </Mine> </appenders> Configuration
<Configuration> <Appenders> <File name="Grobmeier" fileName="target/mylog.log"> <PatternLayout> <Pattern>%d %C{1.}</Pattern> </PatternLayout> </File>
</Appenders> <Loggers> <Logger name="com.Bar" level="trace"> <AppenderRef ref="Grobmeier"/> </Logger> Configuration
<File name="App" fileName="app.log"> <PatternLayout> <pattern> %d $${jndi:logging/context-name} %m%n </pattern> </PatternLayout>
</File> Configuration
JSON { "configuration": … "appenders": { "Console": { "name": "STDOUT",
"PatternLayout": { "pattern": "%m%n" } }, ...
Configuration Reloading <configuration monitorInterval="30"> ... </configuration>
More? MDC (ThreadContext) EventLogger Flowtracing …
SPEED! log4j 1.x logback log4j 2.x Disabled 5 2386 2116
2314 Logging Performance in ns
SPEED! Async Logging Power!
Again: >18,000,000 messages / second On Solaris 10 (64bit) with
JDK1.7.0_06, 4-core Xeon X5570 dual CPU @2.93Ghz with hyperthreading switched on (16 virtual cores)
LMAX DISRUPTOR removes the kernel need for locks on the
CPU level
CHAINSAW
None
The story of log4php Community
Good times, bad times 1999 2005 2010 2011
You are welcome Join ~8 active committers.
We are back! 2013: 1018 Changes 4730 Mails 2014: 1502
Changes 8501 Mails
Seriously. Isn‘t logging just BORING?
Well... how do you log on your mobile/cloud apps?
With new innovation, new logging challenges come up. Logging needs
innovation too.
Logger Log Collector Log Search Log Analysis
Logger Log Collector Log Search Log Analysis
Logger Log Collector Log Search Log Analysis
None
Logging is mission critical.
One last thing...
Do we need a new Logging JSR? java.net/projects/newlogging
We are hiring! use it! ask questions! spread the love!
send patches!
[email protected]
Christian Grobmeier @grobmeier http://www.grobmeier.de Merci && Baba!
Image Credits Writing Girl (Erin Kohlenberg) Captain Kirk (http://dave-daring.deviantart.com/) Vulcano
(Martin Barland) Fire Brigade (State Library of South Australia) Gear Necklace Designs (Eric Skiff) Gazelle (Flickr: fwooper) Golden Gate Bridge (Flickr: TimeLapseBlog.com) Pens (Flickr: JD | Photography) Wineglass (Flickr: Willia4) Headache (Flickr: Threephin) Pills (Dr. Michael Günther) Wheelgear (Flickr: ralphbijker) Chainsaw (Flickr: Dave Hosford) Elephant (Flickr: Werner Vermaak) Haunted House (Flickr: barb_ar) SOS (Flickr: Daquella Manera) Bathtime muscles (Flickr: mollypop) Yawning Animal (Flickr: robef) Mobile (Flickr: twicepix) Steve (https://www.flickr.com/photos/-macjasp/) Paul Carmody Clouds (Flickr: karindalziel) Fight (Flickr: KellBailey)