- test client
```
require 'fluent-logger'
require 'json'
log = Fluent::Logger::FluentLogger.new(nil, :host=>'localhost', :port=>24224)
hash = {'hello' => 'world'}
loop {
log.post("ind9a.mtn", hash)
sleep 1
}
```
- output result
You can see files are created by 5 seconds interval
```
% ls -T -l log
total 56
-rw-r--r-- 1 repeatedly staff 36B 11 30 13:03:02 2017 ind9a.mtn.201711301303_0.log
-rw-r--r-- 1 repeatedly staff 90B 11 30 13:03:07 2017 ind9a.mtn.201711301303_1.log
-rw-r--r-- 1 repeatedly staff 90B 11 30 13:03:12 2017 ind9a.mtn.201711301303_2.log
-rw-r--r-- 1 repeatedly staff 90B 11 30 13:03:17 2017 ind9a.mtn.201711301303_3.log
-rw-r--r-- 1 repeatedly staff 90B 11 30 13:03:22 2017 ind9a.mtn.201711301303_4.log
-rw-r--r-- 1 repeatedly staff 90B 11 30 13:03:27 2017 ind9a.mtn.201711301303_5.log
-rw-r--r-- 1 repeatedly staff 72B 11 30 13:03:32 2017 ind9a.mtn.201711301303_6.log
```
> What am I missing?
I'm not sure... one possible case using old configuration on your test server.
Masahiro