diff --git a/content/index.html b/content/index.html index a1a1b7cf..c2b71dea 100644 --- a/content/index.html +++ b/content/index.html @@ -1,54 +1,56 @@ --- title: Home --- -
-
-

Data Model

-

Prometheus implements a highly dimensional data model. Timeseries are identified by a metric name and a set of key-value pairs.

-

View details »

+
+
+
+

Data Model

+

Prometheus implements a highly dimensional data model. Timeseries are identified by a metric name and a set of key-value pairs.

+

View details »

+
+
+

Query Language

+

A flexible query languge allows slicing and dicing of collected timeseries data in order to generate ad-hoc graphs, tables, and alerts.

+

View details »

+
+
+

Visualization

+

Prometheus supports multiple modes for visualizing data: a built-in expression browser, a GUI-based dashboard builder, and a console template language.

+

View details »

+
-
-

Query Language

-

A flexible query languge allows slicing and dicing of collected timeseries data in order to generate ad-hoc graphs, tables, and alerts.

-

View details »

+
+
+

Pull Model

+

Prometheus collects timeseries data by scraping instrumented services via HTTP. Short-lived jobs are supported via a push gateway.

+

View details »

+
+
+

Storage

+

Prometheus stores timeseries in memory and on local disk in an efficient custom format. Scaling is achieved by functional sharding and federation.

+

View details »

+
+
+

Operation

+

Prometheus servers are autonomous, with no dependency on distributed storage. Written in Go, all binaries are statically linked and easy to deploy.

+

View details »

+
-
-

Visualization

-

Prometheus supports multiple modes for visualizing data: a built-in expression browser, a GUI-based dashboard builder, and a console template language.

-

View details »

-
-
-
-
-

Pull Model

-

Prometheus collects timeseries data by scraping instrumented services via HTTP. Short-lived jobs are supported via a push gateway.

-

View details »

-
-
-

Storage

-

Prometheus stores timeseries in memory and on local disk in an efficient custom format. Scaling is achieved by functional sharding and federation.

-

View details »

-
-
-

Operation

-

Prometheus servers are autonomous, with no dependency on distributed storage. Written in Go, all binaries are statically linked and easy to deploy.

-

View details »

-
-
-
-
-

Client Libraries

-

Client libraries allow easy instrumentation of services. Currently, Go, Java, and Ruby are supported. Custom libraries are easy to implement.

-

View details »

-
-
-

Alerting

-

Alerts are defined based on Prometheus's flexible query language and maintain dimensional information. An alertmanager handles notifications and silencing.

-

View details »

-
-
-

Exporters

-

Existing exporters allow bridging of third-party data into Prometheus. Examples: system statistics, as well as Docker, HAProxy, StatsD, and JMX metrics.

-

View details »

+
+
+

Client Libraries

+

Client libraries allow easy instrumentation of services. Currently, Go, Java, and Ruby are supported. Custom libraries are easy to implement.

+

View details »

+
+
+

Alerting

+

Alerts are defined based on Prometheus's flexible query language and maintain dimensional information. An alertmanager handles notifications and silencing.

+

View details »

+
+
+

Exporters

+

Existing exporters allow bridging of third-party data into Prometheus. Examples: system statistics, as well as Docker, HAProxy, StatsD, and JMX metrics.

+

View details »

+
diff --git a/layouts/header.html b/layouts/header.html index 9f998037..8a0d4dc1 100644 --- a/layouts/header.html +++ b/layouts/header.html @@ -41,11 +41,11 @@ Prometheus
diff --git a/layouts/jumbotron.html b/layouts/jumbotron.html index 958049f8..35639328 100644 --- a/layouts/jumbotron.html +++ b/layouts/jumbotron.html @@ -3,7 +3,7 @@

Prometheus

-

An open-source service monitoring system and timeseries database.

+

An open-source service monitoring system and timeseries database.

Get Started

diff --git a/static/docs.css b/static/docs.css index d27f4fb1..df819cb7 100644 --- a/static/docs.css +++ b/static/docs.css @@ -80,3 +80,30 @@ pre { code { color: #333; } + +.main p { + font-size: 16px; + line-height: 1.8em; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; +} + +.main .desc { + margin-bottom: 20px; +} + +.main-nav { + letter-spacing: 1px; + font-family: Avenir, 'Open Sans', serif; + font-size: 12px; + font-weight: 500; + text-transform: uppercase; +} + +.jumbotron { + padding: 40px 0; +} + +.jumbotron .subtitle { + margin-bottom: 20px; +}