forked from elastic/logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.erb
56 lines (48 loc) · 2.14 KB
/
index.html.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: logstash docs index
layout: content_right
---
<div id="doc_index_container">
<h3> for users </h3>
<ul>
<li> <a href="https://download.elasticsearch.org/logstash/logstash/logstash-%VERSION%-flatjar.jar"> download logstash %VERSION% </a> </li>
<li> <a href="repositories"> package repositories</a> </li>
<li> <a href="configuration"> configuration file overview </a> </li>
<li> <a href="configuration#conditionals">conditionals</a> </li>
<li> <a href="configuration#fieldreferences">referring to fields [like][this]</a> </li>
<li> <a href="configuration#sprintf">using the %{fieldname} syntax</a> </li>
<li> <a href="life-of-an-event"> the life of an event in logstash </a> </li>
<li> <a href="flags"> command-line flags </a> </li>
</ul>
<h3> for developers </h3>
<ul>
<li> <a href="extending"> writing your own plugins </a> </li>
</ul>
<h3> use cases and tutorials </h3>
<ul>
<li> <a href="tutorials/getting-started-simple"> getting started (standalone) </a> </li>
<li> <a href="tutorials/getting-started-centralized"> getting started (centralized) </a> </li>
<li> <a href="tutorials/10-minute-walkthrough"> 10-minute walkthrough</a> - a simple walkthrough to show you how to configure the logstash agent to process events and even old logs. </li>
<li> <a href="tutorials/metrics-from-logs"> Gathering metrics from logs </a> - take metrics from logs and ship them to graphite, ganglia, and more. </li>
<li> <a href="tutorials/just-enough-rabbitmq-for-logstash">Just enough RabbitMQ for Logstash </a> - Get a quick primer on RabbitMQ and how to use it in Logstash! </li>
</ul>
<h3> books and articles </h3>
<ul>
<li> <a href="http://www.logstashbook.com">The Logstash Book </a> - An introductory Logstash book. </li>
</ul>
<h3> plugin documentation </h3>
<% docs.each do |type, paths| -%>
<div class="doc_index_section">
<h3><%= type %></h3>
<ul>
<% paths.each do |path| -%>
<% name = File.basename(path).gsub(".html", "") -%>
<li>
<a href="<%= "#{type}/#{name}" %>"><%= name %></a>
</li>
<% end -%>
</ul>
</div>
<% end -%>
</div>
<div class="clear"></div>