Sha256: 4d1c49965e3080e89dc459e8cc4d5631b647dc6793d813d39a33484796fc5698

Contents?: true

Size: 773 Bytes

Versions: 3

Compression:

Stored size: 773 Bytes

Contents

## built-in TCP input
## $ echo <json> | fluent-cat <tag>
<source>
  type forward
</source>

# HTTP input
# http://localhost:8888/<tag>?json=<json>
<source>
  type http
  port 8888
</source>

<match worker_logs.*.*>
  type forest
  subtype copy
  <template>
    <store>
      type bigquery
      method insert
      auth_method compute_engine
      #auth_method private_key
      #email xxxxxxxx@developer.gserviceaccount.com
      #private_key_path /path/to/private/key.p12
      project myproject
      dataset worker_logs
      time_format %s
      time_field time
      table ${tag_parts[1]}_${tag_parts[2]}_%Y_%m
      auto_create_table true
      field_integer time,bytes
      field_string project,stage,version,container,message
    </store>
  </template>
</match>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
magellan-log-funnel-1.2.0 config/fluent.conf.example
magellan-log-funnel-1.1.0 config/fluent.conf.example
magellan-log-funnel-1.0.0 config/fluent.conf.example