私はelasticsearchで流暢にセットアップし、nginxでKibanaをセットアップしました。指示に従い、http:/192.168.10.25:8888にアクセスすると、次のメッセージが表示されます。
400 Bad Request'json 'または' msgpack 'パラメーターが必要です
以下は私のfluent.confです
## built-in TCP input
## $ echo <json> | fluent-cat <tag>
<source>
type forward
</source>
## built-in UNIX socket input
#<source>
# type unix
#</source>
# HTTP input
# http://localhost:8888/<tag>?json=<json>
<source>
type http
port 8888
bind 0.0.0.0
body_size_limit 32m
keepalive_timeout 10s
</source>
# collect the dmesg output
<source>
type syslog
port 42185
tag system
</source>
# collect tail with: echo '{"event":"event-123","duration":2700}' >> /var/log/example.log
# Fluentd user need read permission on .log and r/w permission on .pos
<source>
type tail
path /var/log/example.log
pos_file /var/log/example.log.pos # to store last read position
tag personal.example
format json
</source>
## File input
## read Apache logs with tag=Apache.access
#<source>
# type tail
# format Apache
# path /var/log/httpd-access.log
# tag Apache.access
#</source>
# Listen HTTP for monitoring
# http://localhost:24220/api/plugins
# http://localhost:24220/api/plugins?type=TYPE
# http://localhost:24220/api/plugins?tag=MYTAG
<source>
type monitor_agent
port 24220
</source>
# Listen DRb for debug
<source>
type debug_agent
port 24230
</source>
## match tag=Apache.access and write to file
#<match Apache.access>
# type file
# path /var/log/fluent/access
#</match>
# events stored on Elastic Search
<match personal.**>
type elasticsearch
logstash_format true
flush_interval 10s # for testing
include_tag_key true
tag_key _key
</match>
## match tag=debug.** and dump to console
<match debug.**>
type stdout
</match>
# match tag=system.** and forward to another fluent server
<match system.**>
type forward
<server>
Host 192.168.0.11
</server>
<secondary>
<server>
Host 192.168.0.12
</server>
</secondary>
</match>
## match tag=myapp.** and forward and write to file
#<match myapp.**>
# type copy
# <store>
# type forward
# buffer_type file
# buffer_path /var/log/fluent/myapp-forward
# retry_limit 50
# flush_interval 10s
# <server>
# Host 192.168.0.13
# </server>
# </store>
# <store>
# type file
# path /var/log/fluent/myapp
# </store>
#</match>
## match fluent's internal events
#<match fluent.**>
# type null
#</match>
## match not matched logs and write to file
#<match **>
# type file
# path /var/log/fluent/else
# compress gz
#</match>
Fluentd構成が機能しています。
In_httpはHTTPリクエスト(POSTまたはGET)にjson/msgpackパラメータがないことを認識しているため、「400 Bad Request'json 'または' msgpack 'パラメータが必要です」というメッセージが表示されます。
やってみてください
curl -X POST -d 'json={"message":"hello"}'
同じエラーが引き続き表示されるかどうかを確認します。