write your own monitoring
play

Write your own monitoring About RRDtool Programming software with - PowerPoint PPT Presentation

Write your own monitoring software with RRDtool Tobias Oetiker Motivation Write your own monitoring About RRDtool Programming software with RRDtool Summary Tobias Oetiker ISG.EE - ETH Zrich OSCON 2005 Portland, Oregon, August 3, 2005


  1. Write your own monitoring software with RRDtool Tobias Oetiker Motivation Write your own monitoring About RRDtool Programming software with RRDtool Summary Tobias Oetiker ISG.EE - ETH Zürich OSCON 2005 Portland, Oregon, August 3, 2005

  2. Write your own Netflow Data presented with monitoring software with RRDtool Fluxscope Tobias Oetiker Motivation About RRDtool Programming Summary

  3. Content Write your own monitoring software with RRDtool Tobias Oetiker Motivation Motivation The world today About data collection The world today A graph says more than 1’000 words About data collection About RRDtool A graph says more than Programming Summary 1’000 words About RRDtool Programming Summary

  4. Write your own Numbers everywhere monitoring software with RRDtool Tobias Oetiker Motivation The world today About data collection A graph says more than 1’000 words About RRDtool ◮ 15 users online Programming ◮ 1.34 PB free tape space Summary ◮ 31’223 ifInOctets ◮ 100 degrees in the server room ◮ 87 Mb/s transfer rate

  5. Write your own All these questions monitoring software with RRDtool Tobias Oetiker Motivation The world today ◮ Are we running out of About data collection A graph says more than 1’000 words diskspace? About RRDtool ◮ Is there a pattern in the high Programming server load? Summary ◮ Is there really global warming? ◮ Can we do something about it? ◮ Collect that data!

  6. How to collect data Write your own monitoring software with RRDtool Tobias Oetiker Motivation The world today About data collection A graph says more than 1’000 words About RRDtool ◮ collect everything, analyze Programming later (aka never) Summary ◮ data with known properties makes life simpler ◮ from research to production

  7. Write your own Requirements for a solution monitoring software with RRDtool Tobias Oetiker Motivation The world today About data collection A graph says more than 1’000 words About RRDtool ◮ handle counters and gauges Programming Summary ◮ be nice to the server ◮ setup for specific task ◮ data-pre processing ◮ and forget about it ...

  8. Condor use at UW Write your own monitoring software with RRDtool Tobias Oetiker Motivation The world today About data collection A graph says more than 1’000 words About RRDtool Programming Summary

  9. Write your own Making data accessible monitoring software with RRDtool Tobias Oetiker Motivation The world today About data collection A graph says more than ◮ graphical 1’000 words About RRDtool representation Programming ◮ eye candy for the Summary people ◮ analysis at a glance ◮ make my boss look good to his boss

  10. Data post-processing Write your own monitoring software with RRDtool Tobias Oetiker Motivation The world today About data collection A graph says more than 1’000 words About RRDtool Programming ◮ highlight interesting Summary properties ◮ combine data from several sources ◮ add extra Information

  11. Content Write your own monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool Motivation History Features Graphing features Programming About RRDtool Summary History Features Graphing features Programming Summary

  12. Write your own 1995: MRTG was only a start monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool History Features Graphing features ◮ logfiles in text format Programming Summary ◮ gnuplot for graphs ◮ 1996 - MRTG is used for amazing tasks ◮ more performance ◮ more flexibility

  13. The rrd TOOL Write your own monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool History Features ◮ a building block Graphing features Programming ◮ basis for a better Summary MRTG (2nd system) ◮ basis for hundreds of other tools ◮ Google says: “industry standard”

  14. The Round Robin Database Write your own monitoring software with RRDtool Tobias Oetiker Motivation ◮ lossy storage, fixed file size About RRDtool History ◮ current data is the most Features Graphing features interesting Programming ◮ consolidation functions for Summary feature extraction ◮ artificial data-sources ◮ holt-winters aberrant behavior detection ◮ constant step size ◮ fixed disk space

  15. Write your own Feeding Data monitoring software with RRDtool Tobias Oetiker Motivation ◮ combat jitter by taking About RRDtool History acquisition time into Features Graphing features account. Programming ◮ preserve data-volume Summary ◮ on-the-fly data validation ◮ deal with unknown data ◮ time is a one way street

  16. Write your own Basic Graphing monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool History ◮ auto scaling Features Graphing features ◮ auto labeling Programming Summary ◮ sensible defaults ◮ quick results ◮ anti-aliased output ◮ multiple formats (png/eps/pdf/svg)

  17. Write your own Advanced Graphing monitoring software with RRDtool Tobias Oetiker ◮ change colors, fonts, Motivation sizes About RRDtool History ◮ data from several Features Graphing features databases Programming Summary ◮ data processing with RPN math ◮ alpha transparency (rrggbbaa) ◮ support of locale based character encoding ◮ truetype fonts

  18. Content Write your own monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool Motivation Programming Language bindings Basic operations About RRDtool Advanced Graphing Summary Programming Language bindings Basic operations Advanced Graphing Summary

  19. On the command line Write your own monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool Programming Just another Unix command. Language bindings Basic operations code Advanced Graphing Summary rrdtool cmd arg example rrdtool info demo.rrd

  20. Via STDIN Write your own monitoring software with RRDtool Tobias Oetiker Motivation Save startup time by feeding several commands. About RRDtool code Programming Language bindings echo cmd arg | rrdtool - Basic operations Advanced Graphing example Summary echo info demo.rrd | rrdtool - ◮ several commands ◮ fast operation ◮ simple interface

  21. Write your own perl module monitoring software with RRDtool Tobias Oetiker Motivation I love coding in perl ... About RRDtool Programming code Language bindings Basic operations use RRDs; Advanced Graphing my $ return = RRDs:: cmd arg ; Summary example use RRDs; use Data::Dumper my $ret = RRDs::info "demo.rrd"; print Dumper $ret;

  22. Write your own Other Bindings monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool Programming Language bindings ◮ RRDcgi Basic operations Advanced Graphing ◮ Perl Pipes - RRDp Summary ◮ Python ◮ Tcl ◮ and more externally

  23. Write your own Creating Round Robin Databases monitoring software with RRDtool Tobias Oetiker ◮ what data do I want to look at? Motivation ◮ how long do I want to keep it? About RRDtool Programming ◮ what are the interesting properties of my data? Language bindings Basic operations ◮ what to keep in one rrd file? Advanced Graphing Summary Command rrdtool create filename [ –start start time ] [ –step step ] [ DS: ds-name : DST : heartbeat : min : max ] [ RRA: CF : xff : steps : rows ] DST : COUNTER, GAUGE, DERIVE, ABSOLUTE, New in 1.2: COMPUTE CF : AVERAGE, MIN, MAX, LAST, New in 1.2: Aberrant Behavior Detection .

  24. Write your own Create Example monitoring software with RRDtool Tobias Oetiker example Motivation rrdtool create example.rrd --step=60\ About RRDtool DS:in:COUNTER:600:0:1000 \ Programming Language bindings RRA:AVERAGE:0.5:1:100 \ Basic operations Advanced Graphing RRA:AVERAGE:0.5:10:100 \ Summary RRA:MAX:0.5:10:100 ◮ resolution 60 seconds ◮ COUNTER data source ◮ updates at least every 600 seconds ◮ accept rates between 0 and 1000 ◮ three archive with 100 entries ◮ store unknown unless half are known.

  25. Write your own Adding Data into a Round Robin monitoring software with RRDtool Database Tobias Oetiker Motivation About RRDtool Programming Command Language bindings Basic operations rrdtool update filename [ –template ds:ds:... ] Advanced Graphing Summary time : value : value ...[...] ◮ data value and acquisition time ◮ timestamps have to increase with every update ◮ instead of time use N for now ◮ templates are for redundancy only

  26. Write your own Update Example monitoring software with RRDtool Tobias Oetiker Motivation About RRDtool Programming Language bindings Basic operations Advanced Graphing example Summary rrdtool update example.rrd \ --template in N:39344

  27. Write your own Data re-bin-ing monitoring software with RRDtool Tobias Oetiker Motivation 700 octets/sec About RRDtool 1 2 Programming 280k Language bindings octets Basic operations Advanced Graphing Summary 400s 3 300s 300s Data Aquisition Data Storage 300s 300s

  28. Data Consolidation Write your own monitoring software with RRDtool Tobias Oetiker RRA with 1 PDP Motivation About RRDtool Programming Language bindings Basic operations Advanced Graphing Summary AVERAGE RRA with 2 PDP AVERAGE RRA with 3 PDP

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend