Sha256: 0c361bcc9162a0c90d83bbe63895180a9123e3605061be00fdedd65f116ea5fa

Contents?: true

Size: 965 Bytes

Versions: 2

Compression:

Stored size: 965 Bytes

Contents

# fluent-plugin-map

fluent-plugin-map(out\_map) is the non-buffered plugin that can convert an event log to different event log(s)

## Example

This sample config output code file and time file.

    <source>
      type tail
      format apache
      path /var/log/httpd-access.log
      tag tag
    </source>
    <match tag>
      type map
      map [["code." + tag, time, {"code" => record["code"].to_i}], ["time." + tag, time, {"time" => record["time"].to_i}]]
      multi true
    </match>
    <match code.tag>
      type file
      path code.log
    </match>
    <match time.tag>
      type file
      path time.log
    </match>


The parameter "map" can use 3 variables in event log; tag, time, record. The format of time is an integer number of seconds since the Epoch. The format of record is hash.
The config file parses # as the begin of comment. So the "map" value cannot use #{tag} operation.
This plugin can output multi logs by seting multi to true.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-plugin-map-0.0.2 README.markdown
fluent-plugin-map-0.0.1 README.markdown