Skip to content

ElasticSearch Sender

Sun Jianbo edited this page Dec 4, 2017 · 3 revisions

Elasticsearch Sender 是将解析后的结构化数据发送到Elasticsearch的发送器

典型配置

{
        "name":"es_sender",
        "sender_type":"elasticsearch",
        "elastic_host":"localhost:9200",
        "elastic_index":"test",
        "elastic_type":"testType",
        "elastic_keys":"oldKey newKey,oldKey2 newKey2"
}
  1. elasitc_host elasticsearch 服务地址, 多个地址使用,分隔
  2. elastic_index elasticsearch 的索引名
  3. elastic_type elasticsearch 索引下的type,默认为logkit
  4. elastic_keys key 名字.用","逗号分隔,分隔后每一个字符串中间有空格,则认为是起了别名,如"name alias,name2"这样
  5. elastic_index_strategy 创建索引的策略,默认为default用一个索引,也可以选择 year 按年创建索引, month按月创建索引,day按天创建索引
  6. elastic_time_zone 创建索引使用的时区,支持 Local(本地时区) UTC(标准时区) 以及 PRC(中国)
  7. logkit_send_time logkit的数据发送时间,默认为true,可用于查看数据是否发送延迟等。
  8. elastic_version es服务端的版本号,目前支持 3.x(含2.x) 5.x(5.x) 以及6.x(6.x)
Clone this wiki locally