es同步mongodb数据,但是要指定字段同步

使用monstache和es索引模板,怎么避免全部同步数据,只同步某一些字段的数据呢?

写一个模板
PUT _template/usertestdb
{
"index_patterns":["te*"],
"order":1,
"settings":{
"index":{
"mapping":{
"total_fields":{
"limit":"100000"
}
}
},
"number_of_shards": 1
},
"mappings":{
"_source":{
"includes":[
"id_str",
"created_at_agg",
"source"
]
},
"properties":{
"created_at_agg":{
"type":"date"
}
}
},
"aliases":{
"my_index":{}
}
}

请问解决了吗?或者有其他什么方案吗