Github user merrimanr commented on the issue:
https://github.com/apache/metron/pull/1103
I tested this in full dev and the fixed query request is incorrect. Here's
what is being sent:
```
{
"startTime": 0,
"endTime": 150000000000000000,
"srcIp": "",
"srcPort": 22,
"dstIp": "",
"dstPort": "",
"protocol": "",
"packetFilter": "",
"includeReverseTraffic": false
}
```
when it should look like:
```
{
"startTimeMs": 0,
"endTimeMs": 150000000000000000,
"ipSrcAddr": "",
"ipSrcPort": 22,
"ipDstAddr": "",
"ipDstPort": "",
"protocol": "",
"packetFilter": "",
"includeReverse": false
}
```
I've submitted a PR that fixes the issue. The UI works as expected with
those changes. Let me know if there is anything missing in that.
---