Hi,
I had my kibana working great! I added an index to pull in data from another source and lost all visualizations. When I click on the tabs in the overview dashboard they all say "No results displayed because all values equal 0." I have tried searching on specific indexes as well as ones that were displaying previously and nothing.
My visualizations are set to query on elastiflow*.
My index names are elastiflow-asi-asa%date% and elastiflow-cvh-asa%date%
I am getting data from logstash as my indices are increasing.
Here is an example of the data pulling to show I am getting something.
{
"_index": "elastiflow-cvh-asa2018.05.08",
"_type": "doc",
"_id": "jzvQP2MBEabB04r_a4Wr",
"_version": 1,
"_score": null,
"_source": {
"@version": "1",
"netflow": {
"event_time_msec": 1525784080181,
"icmp_code": 0,
"rev_flow_delta_bytes": 204,
"xlate_dst_addr_ipv4": "8.8.8.8",
"responderPackets": 1,
"l4_src_port": 9688,
"icmp_type": 0,
"xlate_src_addr_ipv4": "96.10.27.74",
"input_snmp": 3,
"xlate_src_port": 9688,
"flow_seq_num": 93920,
"l4_dst_port": 53,
"conn_id": 51531889,
"ipv4_dst_addr": "8.8.8.8",
"xlate_dst_port": 53,
"fw_event": 2,
"initiatorPackets": 1,
"protocol": 17,
"fw_ext_event": 2020,
"version": 9,
"output_snmp": 2,
"flow_start_msec": 1525784080141,
"fwd_flow_delta_bytes": 30,
"flowset_id": 263,
"ipv4_src_addr": "192.168.1.106"
},
"tags": [
"port_9597"
],
"node": {
"ipaddr": "10.10.1.254",
"hostname": "10.10.1.254"
},
"event": {
"host": "10.10.1.254",
"type": "netflow v9"
},
"flow": {
"geoip": {
"autonomous_system": "private"
}
},
"@timestamp": "2018-05-08T12:54:41.000Z"
},
"fields": {
"netflow.flow_start_msec": [
"2018-05-08T12:54:40.141Z"
],
"netflow.event_time_msec": [
"2018-05-08T12:54:40.181Z"
],
"@timestamp": [
"2018-05-08T12:54:41.000Z"
]
},
"sort": [
1525784081000
]
}
and
{
"_index": "elastiflow-asi-asa-2018.05.08",
"_type": "doc",
"_id": "3z3VP2MBEabB04r_X2m6",
"_version": 1,
"_score": null,
"_source": {
"@version": "1",
"netflow": {
"event_time_msec": 1525784115490,
"icmp_code": 0,
"rev_flow_delta_bytes": 436,
"xlate_dst_addr_ipv4": "40.97.147.194",
"l4_src_port": 55679,
"icmp_type": 0,
"xlate_src_addr_ipv4": "64.246.214.189",
"input_snmp": 4,
"xlate_src_port": 31633,
"flow_seq_num": 7358466,
"l4_dst_port": 443,
"conn_id": 388635648,
"ipv4_dst_addr": "40.97.147.194",
"xlate_dst_port": 443,
"fw_event": 5,
"protocol": 6,
"fw_ext_event": 2031,
"version": 9,
"output_snmp": 3,
"flow_start_msec": 1525784096470,
"fwd_flow_delta_bytes": 0,
"flowset_id": 263,
"ipv4_src_addr": "10.15.41.25"
},
"tags": [
"port_9596"
],
"node": {
"ipaddr": "192.168.200.1",
"hostname": "192.168.200.1"
},
"event": {
"host": "192.168.200.1",
"type": "netflow v9"
},
"flow": {
"geoip": {
"autonomous_system": "private"
}
},
"@timestamp": "2018-05-08T12:55:15.000Z"
},
"fields": {
"netflow.flow_start_msec": [
"2018-05-08T12:54:56.470Z"
],
"netflow.event_time_msec": [
"2018-05-08T12:55:15.490Z"
],
"@timestamp": [
"2018-05-08T12:55:15.000Z"
]
},
"sort": [
1525784115000
]
}
Any ideas????