我想使用脚本化字段查找两个字段之间的差异。这是两个日期字段及其格式:
start_time - June 17th 2018, 09:44:46.000
end_time - June 17th 2018, 09:44:49.000
哪个会给proc_time
。
这是我要在脚本字段中执行的操作:
doc['start_time'].date.millis - doc['end_time'].date.millis
但这将返回从纪元时间中扣除的处理时间。
例如,如果我的处理时间为2秒,那么输出将为epoch time - 2 seconds
。
这不是我想要的。
这是示例文档:
17 Jun 2018 04:14:46 INFO CSG event file generation started at: Sun Jun 17 04:14:46 CDT 2018
17 Jun 2018 04:14:46 INFO Executing CSG file generation process
Warning: Using a password on the command line interface can be insecure.
17 Jun 2018 04:15:57 INFO Finished at: Sun Jun 17 04:15:57 CDT 2018
任何帮助将不胜感激。
更新
我已经使用以下简单的脚本来完成此工作:
((doc['csg_proc_end_time'].date.year) * 31536000 + doc['csg_proc_end_time'].date.monthOfYear * 86400 + doc['csg_proc_end_time'].date.dayOfMonth * 3600 + doc['csg_proc_end_time'].date.secondOfDay) - ((doc['csg_proc_start_time'].date.year) * 31536000 + doc['csg_proc_start_time'].date.monthOfYear * 86400 + doc['csg_proc_start_time'].date.dayOfMonth * 3600 + doc['csg_proc_start_time'].date.secondOfDay)
但是,我欢迎其他任何以更简单的方式执行此操作的脚本。
添加字段的JSON格式:
"fields": {
"@timestamp": [
"2018-06-20T04:45:00.258Z"
],
"zimbra_proc_time": [
0
],
"csg_proc_time": [
71
],
"perftech_proc_time": [
0
],
"csg_proc_end_time": [
"2018-06-17T04:15:57.000Z"
],
"csg_proc_start_time": [
"2018-06-17T04:14:46.000Z"
]
},
答案 0 :(得分:0)
这是我为重现您的问题所做的工作,并且工作正常:
PUT test/doc/1
{
"csg_proc_end_time": "2018-06-17T04:15:57.000Z",
"csg_proc_start_time": "2018-06-17T04:14:46.000Z"
}
现在在脚本字段中计算处理时间:
GET test/_search
{
"script_fields": {
"proc_time": {
"script": {
"source": "(doc.csg_proc_end_time.value.millis - doc.csg_proc_start_time.value.millis) / 1000"
}
}
}
}
结果:71秒
{
"_index": "test",
"_type": "doc",
"_id": "1",
"_score": 1,
"fields": {
"proc_time": [
71
]
}
}