[
https://issues.apache.org/jira/browse/METRON-1671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16553269#comment-16553269
]
ASF GitHub Bot commented on METRON-1671:
----------------------------------------
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.
> Create PCAP UI
> --------------
>
> Key: METRON-1671
> URL: https://issues.apache.org/jira/browse/METRON-1671
> Project: Metron
> Issue Type: Sub-task
> Reporter: Tibor Meller
> Priority: Major
>
> The initial feature set of PCAP UI is the follwing:
> - Filtering by
> - IP Source Address
> - IP Source Port
> - IP Dest Address
> - IP Dest Port
> - Protocol
> - Include Reverse Traffic
> - Free text filtering
> - Showing PDML result
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)