Graphite: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(Created page with "== Overview == Graphite 내용 정리. == Basic == Graphite 는 다음 두 가지를 한다. * Store number time-series data. * Render graphs of this data on demand. == See...")
 
Line 3: Line 3:


== Basic ==
== Basic ==
Graphite 는 다음 두 가지를 한다.
Graphite 는 다음 두 가지 일을 한다.
* Store number time-series data.
* Store number time-series data.
* Render graphs of this data on demand.
* Render graphs of this data on demand.
Graphite 는 크게 다음 세가지 컴포넌트들로 이루어진다.
* Carbon - a Twisted daemon that listens for time-series data.
* Whisper - a simple database library for storing time-series data(similar in design to RRD)
* Graphite webapp - A Django webapp that renders graphs on-demand using Cairo.


== See also ==
== See also ==

Revision as of 21:38, 1 November 2017

Overview

Graphite 내용 정리.

Basic

Graphite 는 다음 두 가지 일을 한다.

  • Store number time-series data.
  • Render graphs of this data on demand.

Graphite 는 크게 다음 세가지 컴포넌트들로 이루어진다.

  • Carbon - a Twisted daemon that listens for time-series data.
  • Whisper - a simple database library for storing time-series data(similar in design to RRD)
  • Graphite webapp - A Django webapp that renders graphs on-demand using Cairo.

See also