Sha256: 5bde76805868e5c801689fa72c97783c313984116faed73fa64d8134ac6eb5c2

Contents?: true

Size: 1.62 KB

Versions: 16

Compression:

Stored size: 1.62 KB

Contents

####
## Output descriptions:
##

# Treasure Data output
# match events whose tag is td.DATABASE.TABLE
<match td.*.*>
  type tdlog
  apikey YOUR_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
<source>
  type forward
</source>

## built-in UNIX socket input
#<source>
#  type unix
#</source>

# HTTP input
# POST http://localhost:8888/<tag>?json=<json>
# POST http://localhost:8888/td.myapp.login?json={"user"%3A"me"}
<source>
  type http
  port 8888
</source>

## live debugging agent
<source>
  type debug_agent
  bind 127.0.0.1
  port 24230
</source>

####
## Examples:
##

## File input
## read apache logs continuously and tags td.apache.access
#<source>
#  type tail
#  format apache
#  path /var/log/httpd-access.log
#  tag td.apache.access
#</source>

## File output
## match tag=local.** and write to file
#<match local.**>
#  type file
#  path /var/log/td-agent/access
#</match>

## Forwarding
## match tag=system.** and forward to another td-agent server
#<match system.**>
#  type forward
#  host 192.168.0.11
#  # secondary host is optional
#  <secondary>
#    host 192.168.0.12
#  </secondary>
#</match>

## Multiple output
## match tag=td.*.* and output to Treasure Data AND file
#<match td.*.*>
#  type copy
#  <store>
#    type tdlog
#    apikey API_KEY
#    auto_create_table
#    buffer_type file
#    buffer_path /var/log/td-agent/buffer/td
#  </store>
#  <store>
#    type file
#    path /var/log/td-agent/td-%Y-%m-%d/%H.log
#  </store>
#</match>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
fluent-plugin-td-0.10.28 example.conf
fluent-plugin-td-0.10.27 example.conf
fluent-plugin-td-0.10.26 example.conf
fluent-plugin-td-0.10.25 example.conf
fluent-plugin-td-0.10.24 example.conf
fluent-plugin-td-0.10.23 example.conf
fluent-plugin-td-0.10.22 example.conf
fluent-plugin-td-0.10.21 example.conf
fluent-plugin-td-0.10.20 example.conf
fluent-plugin-td-0.10.19 example.conf
fluent-plugin-td-0.10.18 example.conf
fluent-plugin-td-0.10.17 example.conf
fluent-plugin-td-0.10.16 example.conf
fluent-plugin-td-0.10.15 example.conf
fluent-plugin-td-0.10.14 example.conf
fluent-plugin-td-0.10.13 example.conf