SlideShare a Scribd company logo
Log everyting in JSON.
             Treasuare Data, Inc.
           Sadayuki Furuhashi
Self-introduction
>   Sadayuki Furuhashi
    twitter: @frsyuki

>   Original author of Fluentd
>   Treasure Data, Inc.
    Software Architect; Founder

>   open-source
    MessagePack - efficient serialization format
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
0. Why logging?

 >    Error notifications
 >    Performance monitoring
 >    User segment analysis
 >    Funnel analysis
 >    Heatmap analysis
 >    Market prediction
     etc...
0. Why logging? - Error notifications




                        Error!
0. Why logging? - Performance monitor
0. Why logging? - User segment analysis
0. Why logging? - Funnel analysis



                                    -28%!
                         -27%!
0. Why logging? - Heatmap analysis
0. Why logging? - Market prediction
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
Alerting
                    Nagios

                  Analysis
                   MongoDB
                   MySQL
                   Hadoop
log utilization
                  Archiving
                    Amazon S3
Access logs                        Alerting
  Apache                             Nagios

App logs                           Analysis
 Frontend     log sources           MongoDB
 Backend                            MySQL

System logs                         Hadoop
  syslogd        log utilization
                                   Archiving
Databases                            Amazon S3
Access logs   Alerting
  Apache        Nagios

App logs      Analysis
 Frontend      MongoDB
 Backend       MySQL

System logs    Hadoop
  syslogd
              Archiving
Databases       Amazon S3
Access logs   rsync servers
                              Alerting
  Apache                        Nagios

App logs                      Analysis
 Frontend                      MongoDB
 Backend                       MySQL
              bash scripts

System logs                    Hadoop
  syslogd
                              Archiving
Databases                       Amazon S3
              perl scripts
Problems...
No unified method to collect logs
>   Too many bash/perl scripts
    Fragile for changes
    Less reliable
>   Mixed log formats
    Old-fashioned “Human-readable” text logs
    Not ready to analyze
>   High latency
    must wait a day for log rotation
Access logs   Alerting
  Apache        Nagios

App logs      Analysis
 Frontend      MongoDB
 Backend       MySQL

System logs    Hadoop
  syslogd
              Archiving
Databases       Amazon S3
Access logs                               Alerting
  Apache                                    Nagios

App logs                                  Analysis
 Frontend                                  MongoDB
 Backend                                   MySQL

System logs                                Hadoop
  syslogd
                                          Archiving
              filter / buffer / routing
Databases                                   Amazon S3
Input Plugins                    Output Plugins




                Buffer Plugins
                Filter Plugins
Input Plugins                   Output Plugins




                 2012-02-04 01:33:51
   JSON format
                 myapp.buylog {
                   “user”: ”me”,
                   “path”: “/buyItem”,
                   “price”: 150,
                   “referer”: “/landing”
                 }
Input Plugins                   Output Plugins

                                   time
                                     tag

                 2012-02-04 01:33:51
   JSON format
                 myapp.buylog {
                   “user”: ”me”,
                   “path”: “/buyItem”,
                   “price”: 150,
                   “referer”: “/landing”
                 }
                                record
Why Fluentd?
>   Extensibility - Plugin architecture
    collect logs from various systems
    forward logs to various systems
>   Unified log format - JSON format
    modern “Machine-readable” log format
    immediately ready to analyze
>   Reliable - HA configuration
>   Easy to install - RPM/deb packages
    deploy instantly to everywhere
Fluentd meetup #2
Comparision with other log collectors:
>   Scribe
    Less extensible
    No unified log format
    No longer developped?


>   Flume
    Less simple
    No unified log format
    Little information about Flume-NG
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
NHN Japan            COOKPAD              NAVER

Crocos

http://www.quora.com/Who-uses-Fluentd-in-production
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
0. Why logging?

1. Why Fluentd? - Design of Fluentd
 >   Extensibility
 >   Unified log format
 >   Simplicity

2. Who uses Fluentd?

3. Future of Fluentd
Future of Fluentd
>   <filter>
>   <match> in <source>
>   <label>
>   MessagePack for Ruby v5
>   td-agent-lite
>   Pub/Sub & Monitoring API
>   New process model & Live restart
>   Backward compatibility
<source>                       <match **>
  type tail                      type forward
  path /var/log/httpd.log        host log.server
  format apache                </match>
  tag not_filtered.apache
</source>
                                 Mysterious tag
<match not_filetered.**>
  type rewrite
  remove_prefix not_filtered     tag operations
  <rule>
    key     status
    pattern ^500$
    ignore true
  </rule>
</match>



                                                   Before
<source>                       <match **>
  type tail                      type forward
  path /var/log/httpd.log        host log.server
  format apache                </match>
  tag apache
</source>

<filter **>            Filter plugins!
  type rewrite
  <rule>
    key     status
    pattern ^500$
    ignore true
  </rule>
</match>




                                         After (v11)
<source>                    <match **>
  type tail                   type forward
  path /var/log/httpd.log     host log.server
  format apache             </match>
  tag apache


  <filter **>
    type rewrite
    <rule>
      key     status
      pattern ^500$
                            <filter>/<match> in
      ignore true           <source>
    </rule>
  </match>
</source>



                                      After (v11)
<source>                     <match **>
  type tail                    type forward
  path /var/log/httpd.log      host log.server
  tag apache                 </match>
</source>

                   I want to add flowcounter here...




                                                 Before
<source>                            <store>
  type tail                           type forward
  path /var/log/httpd.log             host log.server
  tag apache                        </store>
</source>                         </match>

<match flow.traffic>
  type forward
  host traffic.server
</match>                    Nested!
<match **>
  type copy
  <store>
    type flowcounter
    tag flow.traffic
  </store>


                                                   Before
<source>                      <match **>
  type tail                     type forward
  path /var/log/httpd.log       host log.server
  tag apache                  </match>
</source>

<filter **>
  type copy
  <match>
    type flowcounter
    tag flow.traffic
    <match>
      type forward
      host traffic.server
    </match>
  </match>                  Filtering pipeline
</match>


                                        After (v11)
<source>                      # copy & label & forward
  type forward                <filter **>
</source>                       type copy
                                <match>
<filter **>                       type forward
  type copy                       label alert
  <match>                         host alerting.server
    type file                   </match>
    path /mnt/local_archive   </filter>
  </match>
</filter>                     # copy & label & forward
                              <filter **>
<label alert>                   type copy
  <match **>                    <match>
    ...                           type forward
  </match>                        label analysis
</label>                          host analysis.server
                                </match>
<label analysis>              </filter>
  ...
</label>
                                        After (v11)
MessagePack for Ruby v5

(tweets/sec)

40000

30000

20000

10000

    0
                  Serialize                Deserialize

           msgpack v5         msgpack v4   yajl          json
td-agent-lite




>   in_tail + out_forward in “single” binary
    statically linked ruby binary + scripts tied with the binary
New process model & Live restart
Old multiprocess model
                                       detached
                                        process


               fork()
  Supervisor              Engine

                                       detached
               all data pass through    process
               the central process
New process model & Live restart
New multiprocess model
                                         detached
                                          process


                             Process
 Supervisor    Engine
                             Manager

                                         detached
                                          process
                  direct communication
New process model & Live restart
New multiprocess model
                                          detached
                                           process


                                Process
 Supervisor    Engine
                                Manager

                                          detached
                 Live restart              process



                                Process
               Engine
                                Manager
Backward compatibility


Fluentd v11 includes 2 namespaces:
  > Fluentd:: new code base
  > Fluent:: old code base + wrapper classes



Checkout the repository for details:
 > http://github.com/frsyuki/fluentd-v11
Conculution

Fluentd makes logging better
  > Plugin architecture
  > JSON format
  > HA configuration
  > RPM/deb package

Fluentd is under active development
Fluentd is suppored by many committers
contact: sales@treasure-data.com
Fluentd meetup #2
Fluentd meetup #2
ログ収集/解析に使っているツール
ログの保存先
Fluentdを導入するにあたっての障壁

More Related Content

What's hot (20)

Fluentd v0.12 master guide
Fluentd v0.12 master guideFluentd v0.12 master guide
Fluentd v0.12 master guide
N Masahiro
 
Fluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshellFluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshell
N Masahiro
 
Fluentd unified logging layer
Fluentd   unified logging layerFluentd   unified logging layer
Fluentd unified logging layer
Kiyoto Tamura
 
Fluentd meetup dive into fluent plugin (outdated)
Fluentd meetup dive into fluent plugin (outdated)Fluentd meetup dive into fluent plugin (outdated)
Fluentd meetup dive into fluent plugin (outdated)
N Masahiro
 
Using Logstash, elasticsearch & kibana
Using Logstash, elasticsearch & kibanaUsing Logstash, elasticsearch & kibana
Using Logstash, elasticsearch & kibana
Alejandro E Brito Monedero
 
Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...
Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...
Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...
Data Con LA
 
Fluentd meetup
Fluentd meetupFluentd meetup
Fluentd meetup
Sadayuki Furuhashi
 
From zero to hero - Easy log centralization with Logstash and Elasticsearch
From zero to hero - Easy log centralization with Logstash and ElasticsearchFrom zero to hero - Easy log centralization with Logstash and Elasticsearch
From zero to hero - Easy log centralization with Logstash and Elasticsearch
Rafał Kuć
 
Like loggly using open source
Like loggly using open sourceLike loggly using open source
Like loggly using open source
Thomas Alrin
 
Centralized + Unified Logging
Centralized + Unified LoggingCentralized + Unified Logging
Centralized + Unified Logging
Gabor Kozma
 
Fluentd 101
Fluentd 101Fluentd 101
Fluentd 101
SATOSHI TAGOMORI
 
On Centralizing Logs
On Centralizing LogsOn Centralizing Logs
On Centralizing Logs
Sematext Group, Inc.
 
Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012
Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012
Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012
Treasure Data, Inc.
 
JRuby with Java Code in Data Processing World
JRuby with Java Code in Data Processing WorldJRuby with Java Code in Data Processing World
JRuby with Java Code in Data Processing World
SATOSHI TAGOMORI
 
Logstash-Elasticsearch-Kibana
Logstash-Elasticsearch-KibanaLogstash-Elasticsearch-Kibana
Logstash-Elasticsearch-Kibana
dknx01
 
Fluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshellFluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshell
N Masahiro
 
How to create Treasure Data #dotsbigdata
How to create Treasure Data #dotsbigdataHow to create Treasure Data #dotsbigdata
How to create Treasure Data #dotsbigdata
N Masahiro
 
Logstash family introduction
Logstash family introductionLogstash family introduction
Logstash family introduction
Owen Wu
 
Logstash: Get to know your logs
Logstash: Get to know your logsLogstash: Get to know your logs
Logstash: Get to know your logs
SmartLogic
 
Tuning Elasticsearch Indexing Pipeline for Logs
Tuning Elasticsearch Indexing Pipeline for LogsTuning Elasticsearch Indexing Pipeline for Logs
Tuning Elasticsearch Indexing Pipeline for Logs
Sematext Group, Inc.
 
Fluentd v0.12 master guide
Fluentd v0.12 master guideFluentd v0.12 master guide
Fluentd v0.12 master guide
N Masahiro
 
Fluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshellFluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshell
N Masahiro
 
Fluentd unified logging layer
Fluentd   unified logging layerFluentd   unified logging layer
Fluentd unified logging layer
Kiyoto Tamura
 
Fluentd meetup dive into fluent plugin (outdated)
Fluentd meetup dive into fluent plugin (outdated)Fluentd meetup dive into fluent plugin (outdated)
Fluentd meetup dive into fluent plugin (outdated)
N Masahiro
 
Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...
Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...
Big Data Day LA 2016/ Big Data Track - Fluentd and Embulk: Collect More Data,...
Data Con LA
 
From zero to hero - Easy log centralization with Logstash and Elasticsearch
From zero to hero - Easy log centralization with Logstash and ElasticsearchFrom zero to hero - Easy log centralization with Logstash and Elasticsearch
From zero to hero - Easy log centralization with Logstash and Elasticsearch
Rafał Kuć
 
Like loggly using open source
Like loggly using open sourceLike loggly using open source
Like loggly using open source
Thomas Alrin
 
Centralized + Unified Logging
Centralized + Unified LoggingCentralized + Unified Logging
Centralized + Unified Logging
Gabor Kozma
 
Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012
Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012
Fluentd loves MongoDB, at MongoDB SV User Group, July 17, 2012
Treasure Data, Inc.
 
JRuby with Java Code in Data Processing World
JRuby with Java Code in Data Processing WorldJRuby with Java Code in Data Processing World
JRuby with Java Code in Data Processing World
SATOSHI TAGOMORI
 
Logstash-Elasticsearch-Kibana
Logstash-Elasticsearch-KibanaLogstash-Elasticsearch-Kibana
Logstash-Elasticsearch-Kibana
dknx01
 
Fluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshellFluentd v1.0 in a nutshell
Fluentd v1.0 in a nutshell
N Masahiro
 
How to create Treasure Data #dotsbigdata
How to create Treasure Data #dotsbigdataHow to create Treasure Data #dotsbigdata
How to create Treasure Data #dotsbigdata
N Masahiro
 
Logstash family introduction
Logstash family introductionLogstash family introduction
Logstash family introduction
Owen Wu
 
Logstash: Get to know your logs
Logstash: Get to know your logsLogstash: Get to know your logs
Logstash: Get to know your logs
SmartLogic
 
Tuning Elasticsearch Indexing Pipeline for Logs
Tuning Elasticsearch Indexing Pipeline for LogsTuning Elasticsearch Indexing Pipeline for Logs
Tuning Elasticsearch Indexing Pipeline for Logs
Sematext Group, Inc.
 

Similar to Fluentd meetup #2 (20)

Fluentd meetup at Slideshare
Fluentd meetup at SlideshareFluentd meetup at Slideshare
Fluentd meetup at Slideshare
Sadayuki Furuhashi
 
Fluentd and Embulk Game Server 4
Fluentd and Embulk Game Server 4Fluentd and Embulk Game Server 4
Fluentd and Embulk Game Server 4
N Masahiro
 
Fluentd Unified Logging Layer At Fossasia
Fluentd Unified Logging Layer At FossasiaFluentd Unified Logging Layer At Fossasia
Fluentd Unified Logging Layer At Fossasia
N Masahiro
 
Fluentd Project Intro at Kubecon 2019 EU
Fluentd Project Intro at Kubecon 2019 EUFluentd Project Intro at Kubecon 2019 EU
Fluentd Project Intro at Kubecon 2019 EU
N Masahiro
 
Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)
itnig
 
Miyagawa
MiyagawaMiyagawa
Miyagawa
slidestest
 
Miyagawa
MiyagawaMiyagawa
Miyagawa
guestbdd02b
 
Miyagawa
MiyagawaMiyagawa
Miyagawa
guest0437b8
 
Miyagawa
MiyagawaMiyagawa
Miyagawa
guru100
 
Jordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-eraJordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-era
.toster
 
fluentd -- the missing log collector
fluentd -- the missing log collectorfluentd -- the missing log collector
fluentd -- the missing log collector
Muga Nishizawa
 
The Zeitgeist Movement
The Zeitgeist MovementThe Zeitgeist Movement
The Zeitgeist Movement
guest915c8c5
 
India Pr Wire May 11, 2009 Sensex Down 193 Points On Profit Booking
India Pr Wire May 11, 2009 Sensex Down 193 Points On Profit BookingIndia Pr Wire May 11, 2009 Sensex Down 193 Points On Profit Booking
India Pr Wire May 11, 2009 Sensex Down 193 Points On Profit Booking
Jagannadham Thunuguntla
 
Logging for Production Systems in The Container Era
Logging for Production Systems in The Container EraLogging for Production Systems in The Container Era
Logging for Production Systems in The Container Era
Sadayuki Furuhashi
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic
 
Fluentd - RubyKansai 65
Fluentd - RubyKansai 65Fluentd - RubyKansai 65
Fluentd - RubyKansai 65
N Masahiro
 
Fluentd at HKOScon
Fluentd at HKOSconFluentd at HKOScon
Fluentd at HKOScon
N Masahiro
 
Kubernetes API code-base tour
Kubernetes API code-base tourKubernetes API code-base tour
Kubernetes API code-base tour
Stefan Schimanski
 
Motion Django Meetup
Motion Django MeetupMotion Django Meetup
Motion Django Meetup
Mike Malone
 
Fluentd and Docker - running fluentd within a docker container
Fluentd and Docker - running fluentd within a docker containerFluentd and Docker - running fluentd within a docker container
Fluentd and Docker - running fluentd within a docker container
Treasure Data, Inc.
 
Fluentd and Embulk Game Server 4
Fluentd and Embulk Game Server 4Fluentd and Embulk Game Server 4
Fluentd and Embulk Game Server 4
N Masahiro
 
Fluentd Unified Logging Layer At Fossasia
Fluentd Unified Logging Layer At FossasiaFluentd Unified Logging Layer At Fossasia
Fluentd Unified Logging Layer At Fossasia
N Masahiro
 
Fluentd Project Intro at Kubecon 2019 EU
Fluentd Project Intro at Kubecon 2019 EUFluentd Project Intro at Kubecon 2019 EU
Fluentd Project Intro at Kubecon 2019 EU
N Masahiro
 
Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)
itnig
 
Miyagawa
MiyagawaMiyagawa
Miyagawa
guru100
 
Jordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-eraJordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-era
.toster
 
fluentd -- the missing log collector
fluentd -- the missing log collectorfluentd -- the missing log collector
fluentd -- the missing log collector
Muga Nishizawa
 
The Zeitgeist Movement
The Zeitgeist MovementThe Zeitgeist Movement
The Zeitgeist Movement
guest915c8c5
 
India Pr Wire May 11, 2009 Sensex Down 193 Points On Profit Booking
India Pr Wire May 11, 2009 Sensex Down 193 Points On Profit BookingIndia Pr Wire May 11, 2009 Sensex Down 193 Points On Profit Booking
India Pr Wire May 11, 2009 Sensex Down 193 Points On Profit Booking
Jagannadham Thunuguntla
 
Logging for Production Systems in The Container Era
Logging for Production Systems in The Container EraLogging for Production Systems in The Container Era
Logging for Production Systems in The Container Era
Sadayuki Furuhashi
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic
 
Fluentd - RubyKansai 65
Fluentd - RubyKansai 65Fluentd - RubyKansai 65
Fluentd - RubyKansai 65
N Masahiro
 
Fluentd at HKOScon
Fluentd at HKOSconFluentd at HKOScon
Fluentd at HKOScon
N Masahiro
 
Kubernetes API code-base tour
Kubernetes API code-base tourKubernetes API code-base tour
Kubernetes API code-base tour
Stefan Schimanski
 
Motion Django Meetup
Motion Django MeetupMotion Django Meetup
Motion Django Meetup
Mike Malone
 
Fluentd and Docker - running fluentd within a docker container
Fluentd and Docker - running fluentd within a docker containerFluentd and Docker - running fluentd within a docker container
Fluentd and Docker - running fluentd within a docker container
Treasure Data, Inc.
 

More from Treasure Data, Inc. (20)

GDPR: A Practical Guide for Marketers
GDPR: A Practical Guide for MarketersGDPR: A Practical Guide for Marketers
GDPR: A Practical Guide for Marketers
Treasure Data, Inc.
 
AR and VR by the Numbers: A Data First Approach to the Technology and Market
AR and VR by the Numbers: A Data First Approach to the Technology and MarketAR and VR by the Numbers: A Data First Approach to the Technology and Market
AR and VR by the Numbers: A Data First Approach to the Technology and Market
Treasure Data, Inc.
 
Introduction to Customer Data Platforms
Introduction to Customer Data PlatformsIntroduction to Customer Data Platforms
Introduction to Customer Data Platforms
Treasure Data, Inc.
 
Hands On: Javascript SDK
Hands On: Javascript SDKHands On: Javascript SDK
Hands On: Javascript SDK
Treasure Data, Inc.
 
Hands-On: Managing Slowly Changing Dimensions Using TD Workflow
Hands-On: Managing Slowly Changing Dimensions Using TD WorkflowHands-On: Managing Slowly Changing Dimensions Using TD Workflow
Hands-On: Managing Slowly Changing Dimensions Using TD Workflow
Treasure Data, Inc.
 
Brand Analytics Management: Measuring CLV Across Platforms, Devices and Apps
Brand Analytics Management: Measuring CLV Across Platforms, Devices and AppsBrand Analytics Management: Measuring CLV Across Platforms, Devices and Apps
Brand Analytics Management: Measuring CLV Across Platforms, Devices and Apps
Treasure Data, Inc.
 
How to Power Your Customer Experience with Data
How to Power Your Customer Experience with DataHow to Power Your Customer Experience with Data
How to Power Your Customer Experience with Data
Treasure Data, Inc.
 
Why Your VR Game is Virtually Useless Without Data
Why Your VR Game is Virtually Useless Without DataWhy Your VR Game is Virtually Useless Without Data
Why Your VR Game is Virtually Useless Without Data
Treasure Data, Inc.
 
Connecting the Customer Data Dots
Connecting the Customer Data DotsConnecting the Customer Data Dots
Connecting the Customer Data Dots
Treasure Data, Inc.
 
Harnessing Data for Better Customer Experience and Company Success
Harnessing Data for Better Customer Experience and Company SuccessHarnessing Data for Better Customer Experience and Company Success
Harnessing Data for Better Customer Experience and Company Success
Treasure Data, Inc.
 
Packaging Ecosystems -Monki Gras 2017
Packaging Ecosystems -Monki Gras 2017Packaging Ecosystems -Monki Gras 2017
Packaging Ecosystems -Monki Gras 2017
Treasure Data, Inc.
 
글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)
글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)
글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)
Treasure Data, Inc.
 
Keynote - Fluentd meetup v14
Keynote - Fluentd meetup v14Keynote - Fluentd meetup v14
Keynote - Fluentd meetup v14
Treasure Data, Inc.
 
Introduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of HivemallIntroduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of Hivemall
Treasure Data, Inc.
 
Scalable Hadoop in the cloud
Scalable Hadoop in the cloudScalable Hadoop in the cloud
Scalable Hadoop in the cloud
Treasure Data, Inc.
 
Using Embulk at Treasure Data
Using Embulk at Treasure DataUsing Embulk at Treasure Data
Using Embulk at Treasure Data
Treasure Data, Inc.
 
Scaling to Infinity - Open Source meets Big Data
Scaling to Infinity - Open Source meets Big DataScaling to Infinity - Open Source meets Big Data
Scaling to Infinity - Open Source meets Big Data
Treasure Data, Inc.
 
Treasure Data: Move your data from MySQL to Redshift with (not much more tha...
Treasure Data:  Move your data from MySQL to Redshift with (not much more tha...Treasure Data:  Move your data from MySQL to Redshift with (not much more tha...
Treasure Data: Move your data from MySQL to Redshift with (not much more tha...
Treasure Data, Inc.
 
Treasure Data From MySQL to Redshift
Treasure Data  From MySQL to RedshiftTreasure Data  From MySQL to Redshift
Treasure Data From MySQL to Redshift
Treasure Data, Inc.
 
Unifying Events and Logs into the Cloud
Unifying Events and Logs into the CloudUnifying Events and Logs into the Cloud
Unifying Events and Logs into the Cloud
Treasure Data, Inc.
 
GDPR: A Practical Guide for Marketers
GDPR: A Practical Guide for MarketersGDPR: A Practical Guide for Marketers
GDPR: A Practical Guide for Marketers
Treasure Data, Inc.
 
AR and VR by the Numbers: A Data First Approach to the Technology and Market
AR and VR by the Numbers: A Data First Approach to the Technology and MarketAR and VR by the Numbers: A Data First Approach to the Technology and Market
AR and VR by the Numbers: A Data First Approach to the Technology and Market
Treasure Data, Inc.
 
Introduction to Customer Data Platforms
Introduction to Customer Data PlatformsIntroduction to Customer Data Platforms
Introduction to Customer Data Platforms
Treasure Data, Inc.
 
Hands-On: Managing Slowly Changing Dimensions Using TD Workflow
Hands-On: Managing Slowly Changing Dimensions Using TD WorkflowHands-On: Managing Slowly Changing Dimensions Using TD Workflow
Hands-On: Managing Slowly Changing Dimensions Using TD Workflow
Treasure Data, Inc.
 
Brand Analytics Management: Measuring CLV Across Platforms, Devices and Apps
Brand Analytics Management: Measuring CLV Across Platforms, Devices and AppsBrand Analytics Management: Measuring CLV Across Platforms, Devices and Apps
Brand Analytics Management: Measuring CLV Across Platforms, Devices and Apps
Treasure Data, Inc.
 
How to Power Your Customer Experience with Data
How to Power Your Customer Experience with DataHow to Power Your Customer Experience with Data
How to Power Your Customer Experience with Data
Treasure Data, Inc.
 
Why Your VR Game is Virtually Useless Without Data
Why Your VR Game is Virtually Useless Without DataWhy Your VR Game is Virtually Useless Without Data
Why Your VR Game is Virtually Useless Without Data
Treasure Data, Inc.
 
Connecting the Customer Data Dots
Connecting the Customer Data DotsConnecting the Customer Data Dots
Connecting the Customer Data Dots
Treasure Data, Inc.
 
Harnessing Data for Better Customer Experience and Company Success
Harnessing Data for Better Customer Experience and Company SuccessHarnessing Data for Better Customer Experience and Company Success
Harnessing Data for Better Customer Experience and Company Success
Treasure Data, Inc.
 
Packaging Ecosystems -Monki Gras 2017
Packaging Ecosystems -Monki Gras 2017Packaging Ecosystems -Monki Gras 2017
Packaging Ecosystems -Monki Gras 2017
Treasure Data, Inc.
 
글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)
글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)
글로벌 사례로 보는 데이터로 돈 버는 법 - 트레저데이터 (Treasure Data)
Treasure Data, Inc.
 
Introduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of HivemallIntroduction to New features and Use cases of Hivemall
Introduction to New features and Use cases of Hivemall
Treasure Data, Inc.
 
Scaling to Infinity - Open Source meets Big Data
Scaling to Infinity - Open Source meets Big DataScaling to Infinity - Open Source meets Big Data
Scaling to Infinity - Open Source meets Big Data
Treasure Data, Inc.
 
Treasure Data: Move your data from MySQL to Redshift with (not much more tha...
Treasure Data:  Move your data from MySQL to Redshift with (not much more tha...Treasure Data:  Move your data from MySQL to Redshift with (not much more tha...
Treasure Data: Move your data from MySQL to Redshift with (not much more tha...
Treasure Data, Inc.
 
Treasure Data From MySQL to Redshift
Treasure Data  From MySQL to RedshiftTreasure Data  From MySQL to Redshift
Treasure Data From MySQL to Redshift
Treasure Data, Inc.
 
Unifying Events and Logs into the Cloud
Unifying Events and Logs into the CloudUnifying Events and Logs into the Cloud
Unifying Events and Logs into the Cloud
Treasure Data, Inc.
 

Recently uploaded (20)

Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Salesforce AI Associate 2 of 2 Certification.docx
Salesforce AI Associate 2 of 2 Certification.docxSalesforce AI Associate 2 of 2 Certification.docx
Salesforce AI Associate 2 of 2 Certification.docx
José Enrique López Rivera
 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
 
Building Resilience with Energy Management for the Public Sector
Building Resilience with Energy Management for the Public SectorBuilding Resilience with Energy Management for the Public Sector
Building Resilience with Energy Management for the Public Sector
Splunk
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Kualitatem’s Cybersecurity Risk Assessment
Kualitatem’s Cybersecurity Risk AssessmentKualitatem’s Cybersecurity Risk Assessment
Kualitatem’s Cybersecurity Risk Assessment
Kualitatem Inc
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Asthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdfAsthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdf
VanessaRaudez
 
Learn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step GuideLearn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step Guide
Marcel David
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Ai voice agent for customer care | PPT | Presentation
Ai voice agent for customer care | PPT | PresentationAi voice agent for customer care | PPT | Presentation
Ai voice agent for customer care | PPT | Presentation
Codiste
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...
A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...
A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...
Julia Undeutsch
 
Image processinglab image processing image processing
Image processinglab image processing  image processingImage processinglab image processing  image processing
Image processinglab image processing image processing
RaghadHany
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Salesforce AI Associate 2 of 2 Certification.docx
Salesforce AI Associate 2 of 2 Certification.docxSalesforce AI Associate 2 of 2 Certification.docx
Salesforce AI Associate 2 of 2 Certification.docx
José Enrique López Rivera
 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
 
Building Resilience with Energy Management for the Public Sector
Building Resilience with Energy Management for the Public SectorBuilding Resilience with Energy Management for the Public Sector
Building Resilience with Energy Management for the Public Sector
Splunk
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Kualitatem’s Cybersecurity Risk Assessment
Kualitatem’s Cybersecurity Risk AssessmentKualitatem’s Cybersecurity Risk Assessment
Kualitatem’s Cybersecurity Risk Assessment
Kualitatem Inc
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Asthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdfAsthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdf
VanessaRaudez
 
Learn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step GuideLearn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step Guide
Marcel David
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Ai voice agent for customer care | PPT | Presentation
Ai voice agent for customer care | PPT | PresentationAi voice agent for customer care | PPT | Presentation
Ai voice agent for customer care | PPT | Presentation
Codiste
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...
A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...
A11y Webinar Series - Level Up Your Accessibility Game_ A11y Audit, WCAG, and...
Julia Undeutsch
 
Image processinglab image processing image processing
Image processinglab image processing  image processingImage processinglab image processing  image processing
Image processinglab image processing image processing
RaghadHany
 

Fluentd meetup #2

  • 1. Log everyting in JSON. Treasuare Data, Inc. Sadayuki Furuhashi
  • 2. Self-introduction > Sadayuki Furuhashi twitter: @frsyuki > Original author of Fluentd > Treasure Data, Inc. Software Architect; Founder > open-source MessagePack - efficient serialization format
  • 3. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 4. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 5. 0. Why logging? > Error notifications > Performance monitoring > User segment analysis > Funnel analysis > Heatmap analysis > Market prediction etc...
  • 6. 0. Why logging? - Error notifications Error!
  • 7. 0. Why logging? - Performance monitor
  • 8. 0. Why logging? - User segment analysis
  • 9. 0. Why logging? - Funnel analysis -28%! -27%!
  • 10. 0. Why logging? - Heatmap analysis
  • 11. 0. Why logging? - Market prediction
  • 12. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 13. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 14. Alerting Nagios Analysis MongoDB MySQL Hadoop log utilization Archiving Amazon S3
  • 15. Access logs Alerting Apache Nagios App logs Analysis Frontend log sources MongoDB Backend MySQL System logs Hadoop syslogd log utilization Archiving Databases Amazon S3
  • 16. Access logs Alerting Apache Nagios App logs Analysis Frontend MongoDB Backend MySQL System logs Hadoop syslogd Archiving Databases Amazon S3
  • 17. Access logs rsync servers Alerting Apache Nagios App logs Analysis Frontend MongoDB Backend MySQL bash scripts System logs Hadoop syslogd Archiving Databases Amazon S3 perl scripts
  • 18. Problems... No unified method to collect logs > Too many bash/perl scripts Fragile for changes Less reliable > Mixed log formats Old-fashioned “Human-readable” text logs Not ready to analyze > High latency must wait a day for log rotation
  • 19. Access logs Alerting Apache Nagios App logs Analysis Frontend MongoDB Backend MySQL System logs Hadoop syslogd Archiving Databases Amazon S3
  • 20. Access logs Alerting Apache Nagios App logs Analysis Frontend MongoDB Backend MySQL System logs Hadoop syslogd Archiving filter / buffer / routing Databases Amazon S3
  • 21. Input Plugins Output Plugins Buffer Plugins Filter Plugins
  • 22. Input Plugins Output Plugins 2012-02-04 01:33:51 JSON format myapp.buylog { “user”: ”me”, “path”: “/buyItem”, “price”: 150, “referer”: “/landing” }
  • 23. Input Plugins Output Plugins time tag 2012-02-04 01:33:51 JSON format myapp.buylog { “user”: ”me”, “path”: “/buyItem”, “price”: 150, “referer”: “/landing” } record
  • 24. Why Fluentd? > Extensibility - Plugin architecture collect logs from various systems forward logs to various systems > Unified log format - JSON format modern “Machine-readable” log format immediately ready to analyze > Reliable - HA configuration > Easy to install - RPM/deb packages deploy instantly to everywhere
  • 26. Comparision with other log collectors: > Scribe Less extensible No unified log format No longer developped? > Flume Less simple No unified log format Little information about Flume-NG
  • 27. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 28. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 29. NHN Japan COOKPAD NAVER Crocos http://www.quora.com/Who-uses-Fluentd-in-production
  • 30. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 31. 0. Why logging? 1. Why Fluentd? - Design of Fluentd > Extensibility > Unified log format > Simplicity 2. Who uses Fluentd? 3. Future of Fluentd
  • 32. Future of Fluentd > <filter> > <match> in <source> > <label> > MessagePack for Ruby v5 > td-agent-lite > Pub/Sub & Monitoring API > New process model & Live restart > Backward compatibility
  • 33. <source> <match **> type tail type forward path /var/log/httpd.log host log.server format apache </match> tag not_filtered.apache </source> Mysterious tag <match not_filetered.**> type rewrite remove_prefix not_filtered tag operations <rule> key status pattern ^500$ ignore true </rule> </match> Before
  • 34. <source> <match **> type tail type forward path /var/log/httpd.log host log.server format apache </match> tag apache </source> <filter **> Filter plugins! type rewrite <rule> key status pattern ^500$ ignore true </rule> </match> After (v11)
  • 35. <source> <match **> type tail type forward path /var/log/httpd.log host log.server format apache </match> tag apache <filter **> type rewrite <rule> key status pattern ^500$ <filter>/<match> in ignore true <source> </rule> </match> </source> After (v11)
  • 36. <source> <match **> type tail type forward path /var/log/httpd.log host log.server tag apache </match> </source> I want to add flowcounter here... Before
  • 37. <source> <store> type tail type forward path /var/log/httpd.log host log.server tag apache </store> </source> </match> <match flow.traffic> type forward host traffic.server </match> Nested! <match **> type copy <store> type flowcounter tag flow.traffic </store> Before
  • 38. <source> <match **> type tail type forward path /var/log/httpd.log host log.server tag apache </match> </source> <filter **> type copy <match> type flowcounter tag flow.traffic <match> type forward host traffic.server </match> </match> Filtering pipeline </match> After (v11)
  • 39. <source> # copy & label & forward type forward <filter **> </source> type copy <match> <filter **> type forward type copy label alert <match> host alerting.server type file </match> path /mnt/local_archive </filter> </match> </filter> # copy & label & forward <filter **> <label alert> type copy <match **> <match> ... type forward </match> label analysis </label> host analysis.server </match> <label analysis> </filter> ... </label> After (v11)
  • 40. MessagePack for Ruby v5 (tweets/sec) 40000 30000 20000 10000 0 Serialize Deserialize msgpack v5 msgpack v4 yajl json
  • 41. td-agent-lite > in_tail + out_forward in “single” binary statically linked ruby binary + scripts tied with the binary
  • 42. New process model & Live restart Old multiprocess model detached process fork() Supervisor Engine detached all data pass through process the central process
  • 43. New process model & Live restart New multiprocess model detached process Process Supervisor Engine Manager detached process direct communication
  • 44. New process model & Live restart New multiprocess model detached process Process Supervisor Engine Manager detached Live restart process Process Engine Manager
  • 45. Backward compatibility Fluentd v11 includes 2 namespaces: > Fluentd:: new code base > Fluent:: old code base + wrapper classes Checkout the repository for details: > http://github.com/frsyuki/fluentd-v11
  • 46. Conculution Fluentd makes logging better > Plugin architecture > JSON format > HA configuration > RPM/deb package Fluentd is under active development Fluentd is suppored by many committers