-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathtd-agent.conf.erb
68 lines (60 loc) · 1.51 KB
/
td-agent.conf.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
57
58
59
60
61
62
63
64
65
66
67
68
<% if node['td_agent']['includes'] %>
<% if @major_version.to_i < 2 %>
include conf.d/*.conf
<% else %>
@include conf.d/*.conf
<% end %>
<% end %>
<% if node['td_agent']['default_config'] %>
####
## Output descriptions:
##
# Treasure Data (http://www.treasure-data.com/) provides cloud based data
# analytics platform, which easily stores and processes data from td-agent.
# FREE plan is also provided.
# @see http://docs.fluentd.org/articles/http-to-td
#
# This section matches events whose tag is td.DATABASE.TABLE
<match td.*.*>
type tdlog
apikey <%= node['td_agent']['api_key'] %>
auto_create_table
buffer_type file
buffer_path /var/log/td-agent/buffer/td
</match>
## match tag=debug.** and dump to console
<match debug.**>
type stdout
</match>
####
## Source descriptions:
##
## built-in TCP input
## @see http://docs.fluentd.org/articles/in_forward
<source>
type forward
port <%= node['td_agent']['in_forward']['port'] %>
bind <%= node['td_agent']['in_forward']['bind'] %>
</source>
## built-in UNIX socket input
#<source>
# type unix
#</source>
<% if node["td_agent"]["in_http"]["enable_api"] %>
# HTTP input
# POST http://localhost:8888/<tag>?json=<json>
# POST http://localhost:8888/td.myapp.login?json={"user"%3A"me"}
# @see http://docs.fluentd.org/articles/in_http
<source>
type http
port <%= node['td_agent']['in_http']['port'] %>
bind <%= node['td_agent']['in_http']['bind'] %>
</source>
<% end %>
## live debugging agent
<source>
type debug_agent
bind 127.0.0.1
port 24230
</source>
<% end %>