Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Follow out_s3 plugin ver 0.5.x #133

Merged
merged 1 commit into from
Jan 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/models/fluentd/setting/out_s3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class OutS3

KEYS = [
:match,
:aws_key_id, :aws_sec_key, :s3_bucket, :s3_endpoint, :path,
:aws_key_id, :aws_sec_key, :s3_bucket, :s3_region, :path,
# :reduced_redundancy, :check_apikey_on_start, :command_parameter, # not configurable?
:format, :include_time_key, :time_key, :delimiter, :label_delimiter, :add_newline, :output_tag, :output_time,
:time_slice_format, :time_slice_wait, :time_format, :utc, :store_as, :proxy_uri, :use_ssl,
Expand All @@ -27,7 +27,7 @@ class OutS3

def self.initial_params
{
s3_endpoint: "s3-us-west-1.amazonaws.com",
s3_region: "us-west-1",
output_tag: true,
output_time: true,
use_ssl: true,
Expand All @@ -37,7 +37,7 @@ def self.initial_params
def common_options
[
:match, :aws_key_id, :aws_sec_key,
:s3_endpoint, :s3_bucket, :use_ssl, :path,
:s3_region, :s3_bucket, :use_ssl, :path,
]
end

Expand Down