-
-
Save Songmu/1985203 to your computer and use it in GitHub Desktop.
td-agent setup for NiftyCloud - CentOS 5.6 64bit Plain
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# apache,fluent-plugin-s2が依存するパッケージをインストール | |
yum -y install httpd.x86_64 \ | |
libxml2-devel.x86_64 libxslt-devel.x86_64 | |
# td-agent 用のリポジトリを登録 | |
cat <<_EOT_ 1>/etc/yum.repos.d/td.repo | |
[treasuredata] | |
name=TreasureData | |
baseurl=http://packages.treasure-data.com/redhat/$basearch | |
gpgcheck=0 | |
enabled=0 | |
_EOT_ | |
# td-agentをインストール | |
yum --enablerepo=treasuredata -y install td-agent | |
# apacheのログにtd-agentからアクセスできるよう権限を調整 | |
chgrp td-agent /var/log/httpd/ | |
chmod g+rx /var/log/httpd/ | |
# fluent-plugin-s3 をインストール | |
/usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-s3 | |
# td-agentの設定 | |
cp /etc/td-agent/td-agent.conf /etc/td-agent/td-agent.conf.org | |
cat <<_EOT_ 1>/etc/td-agent/td-agent.conf | |
#### | |
## Output descriptions: | |
## | |
## match tag=debug.** and dump to console | |
<match debug.**> | |
type stdout | |
</match> | |
## built-in TCP input | |
<source> | |
type tcp | |
</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> | |
## File input | |
## read apache logs continuously and tags td.apache.access | |
<source> | |
type tail | |
format apache | |
path /var/log/httpd/access_log | |
tag apache.access | |
</source> | |
<match apache.**> | |
type s3 | |
aws_key_id [ここにaccess keyを入力] | |
aws_sec_key [ここにsecret access keyを入力] | |
s3_bucket [ここにバケット名を入力] | |
s3_endpoint ncss.nifty.com | |
# バケット上の下記のパスに保存されます。適宜修正してください。 | |
path logs/ | |
buffer_path /var/log/td-agent/buffer/s3 | |
time_slice_format %Y%m%d-%H | |
time_slice_wait 10m | |
</match> | |
_EOT_ | |
# apacheを起動 | |
service httpd start | |
echo "==== インストール完了" | |
echo "/etc/td-agent/td-agent.conf にニフティクラウドストレージアクセスキー/バケット名を設定後、td-agentを起動してください。" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment