Collectd cpu 插件类型 disk_io_time 的无效值
Collectd cpu plugin Invalid value for type disk_io_time
我正在使用 collectd cpu 插件并使用 logstash 收集日志消息。我在 logstash 中看到以下错误,有人知道如何解决吗?
{:timestamp=>"2016-07-15T21:03:53.481000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=1", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.482000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=0", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.482000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=1", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.483000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=0", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.484000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=1", :level=>:error}
我收集的版本 - 5.5.1
参见logstash collectd documentation:
If no types.db is provided the included types.db
will be used (currently 5.4.0)
collectd 5.5.1 中似乎有一些变化(参见 here)。因此,需要显式设置types.db,例如:
input {
udp {
codec => collectd {
typesdb => [ '/usr/share/collectd/types.db']
}
}
}
请参阅 https://collectd.org/documentation/manpages/types.db.5.shtml 以确定 types.db 在您的安装中的位置。
我正在使用 collectd cpu 插件并使用 logstash 收集日志消息。我在 logstash 中看到以下错误,有人知道如何解决吗?
{:timestamp=>"2016-07-15T21:03:53.481000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=1", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.482000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=0", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.482000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=1", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.483000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=0", :level=>:error}
{:timestamp=>"2016-07-15T21:03:53.484000+0000", :message=>"Invalid value for type=\"disk_io_time\", key=nil, index=1", :level=>:error}
我收集的版本 - 5.5.1
参见logstash collectd documentation:
If no types.db is provided the included
types.db
will be used (currently 5.4.0)
collectd 5.5.1 中似乎有一些变化(参见 here)。因此,需要显式设置types.db,例如:
input {
udp {
codec => collectd {
typesdb => [ '/usr/share/collectd/types.db']
}
}
}
请参阅 https://collectd.org/documentation/manpages/types.db.5.shtml 以确定 types.db 在您的安装中的位置。