Maybe this update will help.
Learned how to retrieve information:

1.GET filebeat-7.8.1-2020.12.09-000001/_doc/UoYdSHYBgrhx-iAPPOPp
{
"_index" : "filebeat-7.8.1-2020.12.09-000001",
"_type" : "_doc",
"_id" : "UoYdSHYBgrhx-iAPPOPp",
"_version" : 1,
"_seq_no" : 2,
"_primary_term" : 1,
"found" : true,
"_source" : {
"@timestamp" : "2020-12-09T15:27:23.364Z",
"Node" : "some_name",
"MsgOut" : "223155",
"Pid" : "17854",
"Errs" : "0",
"input" : {
"type" : "log"
},
"System" : "MC_IFT_SBRF",
"MsgIn" : "0",
"Warns" : "0",
"message" : "some_name",
"VER" : "39e1e",
"log" : {
"offset" : 0,
"file" : {
"path" : "/home/mcift_pao/test_logs/bla.json"
}
},
"agent" : {
"hostname" : "algodev04.msk.trd.ru",
"ephemeral_id" : "2f3c8f63-f2ba-41b6-80f0-1b15c12ab0b2",
"id" : "4ef6de1d-c457-4179-88d0-d2a25770e29c",
"name" : "algodev04.msk.trd.ru",
"type" : "filebeat",
"version" : "7.8.1"
},
"ecs" : {
"version" : "1.5.0"
},
"Status" : "online",
"host" : {
"os" : {
"codename" : "Maipo",
"platform" : "rhel",
"version" : "7.8 (Maipo)",
"family" : "redhat",
"name" : "Red Hat Enterprise Linux Server",
"kernel" : "3.10.0-1127.19.1.el7.x86_64"
},
"id" : "0979853c5fc248359ccb2b6e9f67bd3e",
"containerized" : false,
"ip" : [
"10.20.3.141",
"fe80::250:56ff:fe9c:647c",
"10.160.20.33",
"fe80::250:56ff:fe9c:743c",
"172.18.0.1",
"172.20.0.1",
"fe80::42:ceff:fe91:75c6",
"fe80::fcef:f2ff:fe26:16a0"
],
"name" : "algodev04.msk.trd.ru",
"mac" : [
"00:50:56:9c:64:7c",
"00:50:56:9c:74:3c",
"00:50:56:9c:44:c8",
"02:42:a4:00:12:15",
"02:42:ce:91:75:c6",
"fe:ef:f2:26:16:a0"
],
"hostname" : "algodev04.msk.trd.ru",
"architecture" : "x86_64"
}
}
}
- Learned how to make put:
POST /filebeat-7.8.1-2020.12.09-000001/_doc/1
{
"Node": "feed_asts_ccy_securities",
"Status": "online",
"MsgIn": "0",
"VER": "39e1e",
"Warns": "0",
"Pid": "17852",
"System": "MC_IFT_SBRF",
"Errs": "0",
"MsgOut": "223144"
}
So I have:
_id = QIbmR3YBgrhx-iAPQ8_t
_id = 9YYJSHYBgrhx-iAPPtt8
_id = UoYdSHYBgrhx-iAPPOPp
_id = 1
- Tried to understand whether "Node" is aggregatable thanks to this request:
GET filebeat-7.8.1-2020.12.09-000001/_search
{
"aggs": {
"filebeat-7.8.1-2020.12.09-000001": {
"terms" : { "field": "Node"}
}
}
}
Got:
Summary
{
"took" : 2,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 4,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "filebeat-7.8.1-2020.12.09-000001",
"_type" : "_doc",
"_id" : "QIbmR3YBgrhx-iAPQ8_t",
"_score" : 1.0,
"_source" : {
"@timestamp" : "2020-12-09T14:27:17.658Z",
"log" : {
"offset" : 0,
"file" : {
"path" : "/home/mcift_pao/test_logs/bla.json"
}
},
"System" : "MC_IFT_SBRF",
"Status" : "online",
"MsgOut" : "223155",
"Errs" : "0",
"host" : {
"ip" : [
"10.20.3.141",
"fe80::250:56ff:fe9c:647c",
"10.160.20.33",
"fe80::250:56ff:fe9c:743c",
"172.18.0.1",
"172.20.0.1",
"fe80::42:ceff:fe91:75c6",
"fe80::fcef:f2ff:fe26:16a0"
],
"mac" : [
"00:50:56:9c:64:7c",
"00:50:56:9c:74:3c",
"00:50:56:9c:44:c8",
"02:42:a4:00:12:15",
"02:42:ce:91:75:c6",
"fe:ef:f2:26:16:a0"
],
"name" : "algodev04.msk.trd.ru",
"hostname" : "algodev04.msk.trd.ru",
"architecture" : "x86_64",
"os" : {
"codename" : "Maipo",
"platform" : "rhel",
"version" : "7.8 (Maipo)",
"family" : "redhat",
"name" : "Red Hat Enterprise Linux Server",
"kernel" : "3.10.0-1127.19.1.el7.x86_64"
},
"id" : "0979853c5fc248359ccb2b6e9f67bd3e",
"containerized" : false
},
"message" : "feed_micex",
"input" : {
"type" : "log"
},
"Node" : "feed_micex",
"Pid" : "17854",
"MsgIn" : "0",
"Warns" : "0",
"VER" : "39e1e",
"ecs" : {
"version" : "1.5.0"
},
"agent" : {
"ephemeral_id" : "2f3c8f63-f2ba-41b6-80f0-1b15c12ab0b2",
"id" : "4ef6de1d-c457-4179-88d0-d2a25770e29c",
"name" : "algodev04.msk.trd.ru",
"type" : "filebeat",
"version" : "7.8.1",
"hostname" : "algodev04.msk.trd.ru"
}
}
},
{
"_index" : "filebeat-7.8.1-2020.12.09-000001",
"_type" : "_doc",
"_id" : "9YYJSHYBgrhx-iAPPtt8",
"_score" : 1.0,
"_source" : {
"@timestamp" : "2020-12-09T15:05:33.055Z",
"host" : {
"id" : "0979853c5fc248359ccb2b6e9f67bd3e",
"containerized" : false,
"ip" : [
"10.20.3.141",
"fe80::250:56ff:fe9c:647c",
"10.160.20.33",
"fe80::250:56ff:fe9c:743c",
"172.18.0.1",
"172.20.0.1",
"fe80::42:ceff:fe91:75c6",
"fe80::fcef:f2ff:fe26:16a0"
],
"mac" : [
"00:50:56:9c:64:7c",
"00:50:56:9c:74:3c",
"00:50:56:9c:44:c8",
"02:42:a4:00:12:15",
"02:42:ce:91:75:c6",
"fe:ef:f2:26:16:a0"
],
"name" : "algodev04.msk.trd.ru",
"hostname" : "algodev04.msk.trd.ru",
"architecture" : "x86_64",
"os" : {
"name" : "Red Hat Enterprise Linux Server",
"kernel" : "3.10.0-1127.19.1.el7.x86_64",
"codename" : "Maipo",
"platform" : "rhel",
"version" : "7.8 (Maipo)",
"family" : "redhat"
}
},
"agent" : {
"name" : "algodev04.msk.trd.ru",
"type" : "filebeat",
"version" : "7.8.1",
"hostname" : "algodev04.msk.trd.ru",
"ephemeral_id" : "2f3c8f63-f2ba-41b6-80f0-1b15c12ab0b2",
"id" : "4ef6de1d-c457-4179-88d0-d2a25770e29c"
},
"ecs" : {
"version" : "1.5.0"
},
"log" : {
"offset" : 161,
"file" : {
"path" : "/home/mcift_pao/test_logs/bla.json"
}
},
"json" : { },
"message" : "",
"input" : {
"type" : "log"
}
}
},
{
"_index" : "filebeat-7.8.1-2020.12.09-000001",
"_type" : "_doc",
"_id" : "UoYdSHYBgrhx-iAPPOPp",
"_score" : 1.0,
"_source" : {
"@timestamp" : "2020-12-09T15:27:23.364Z",
"Node" : "some_name",
"MsgOut" : "223155",
"Pid" : "17854",
"Errs" : "0",
"input" : {
"type" : "log"
},
"System" : "MC_IFT_SBRF",
"MsgIn" : "0",
"Warns" : "0",
"message" : "some_name",
"VER" : "39e1e",
"log" : {
"offset" : 0,
"file" : {
"path" : "/home/mcift_pao/test_logs/bla.json"
}
},
"agent" : {
"hostname" : "algodev04.msk.trd.ru",
"ephemeral_id" : "2f3c8f63-f2ba-41b6-80f0-1b15c12ab0b2",
"id" : "4ef6de1d-c457-4179-88d0-d2a25770e29c",
"name" : "algodev04.msk.trd.ru",
"type" : "filebeat",
"version" : "7.8.1"
},
"ecs" : {
"version" : "1.5.0"
},
"Status" : "online",
"host" : {
"os" : {
"codename" : "Maipo",
"platform" : "rhel",
"version" : "7.8 (Maipo)",
"family" : "redhat",
"name" : "Red Hat Enterprise Linux Server",
"kernel" : "3.10.0-1127.19.1.el7.x86_64"
},
"id" : "0979853c5fc248359ccb2b6e9f67bd3e",
"containerized" : false,
"ip" : [
"10.20.3.141",
"fe80::250:56ff:fe9c:647c",
"10.160.20.33",
"fe80::250:56ff:fe9c:743c",
"172.18.0.1",
"172.20.0.1",
"fe80::42:ceff:fe91:75c6",
"fe80::fcef:f2ff:fe26:16a0"
],
"name" : "algodev04.msk.trd.ru",
"mac" : [
"00:50:56:9c:64:7c",
"00:50:56:9c:74:3c",
"00:50:56:9c:44:c8",
"02:42:a4:00:12:15",
"02:42:ce:91:75:c6",
"fe:ef:f2:26:16:a0"
],
"hostname" : "algodev04.msk.trd.ru",
"architecture" : "x86_64"
}
}
},
{
"_index" : "filebeat-7.8.1-2020.12.09-000001",
"_type" : "_doc",
"_id" : "1",
"_score" : 1.0,
"_source" : {
"Node" : "feed_asts_ccy_securities",
"Status" : "online",
"MsgIn" : "0",
"VER" : "39e1e",
"Warns" : "0",
"Pid" : "17852",
"System" : "MC_IFT_SBRF",
"Errs" : "0",
"MsgOut" : "223144"
}
}
]
},
"aggregations" : {
"filebeat-7.8.1-2020.12.09-000001" : {
"doc_count_error_upper_bound" : 0,
"sum_other_doc_count" : 0,
"buckets" : [
{
"key" : "feed_asts_ccy_securities",
"doc_count" : 1
},
{
"key" : "feed_micex",
"doc_count" : 1
},
{
"key" : "some_name",
"doc_count" : 1
}
]
}
}
}
If the example is correct, it is!
The question is why I can not use this aggregatable "Node" in "Terms" in "Split Series" in "Visualization"?