Shadow Server on Fluentd at Fluentd Casual Talks #3
Fluentd で Shadow サーバ用意し
たら捗った話(と性能検証の話)
December 13th, 2013
Naotoshi Seo @sonots
PFSYS DEPT, GPS DIV.,
DeNA Co., Ltd.
Copyright (C) 2013 DeNA Co.,Ltd. All Rights Reserved.
# deliver.conf
<match **>
type copy
<store>
type forward
<server>
host real.local
port 24224
</server>
</store>
<store>
type forward
<server>
host shadow.local
port 24224
</server>
</store>
</match>
type copy して shadow サーバに forward するだけ
(web サーバのようにレスポンスを切る必要すらない)
Copyright (C) 2013 DeNA Co.,Ltd. All Rights Reserved.
18