Skip to content

Commit

Permalink
Fix timezone parsing of Cisco module ingest pipelines (#13893)
Browse files Browse the repository at this point in the history
Fixes ingest pipelines, and add timezone handling to javascript
pipeline of ios metricset.
  • Loading branch information
jsoriano authored Oct 10, 2019
1 parent 7468ba9 commit 43eb364
Show file tree
Hide file tree
Showing 16 changed files with 660 additions and 601 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fixed bad handling of sequence numbers when multiple observation domains were exported by a single device (Netflow V9 and IPFIX). {pull}13821[13821]
- Fix timezone parsing of rabbitmq module ingest pipelines. {pull}13879[13879]
- Fix conditions and error checking of date processors in ingest pipelines that use `event.timezone` to parse dates. {pull}13883[13883]
- Fix timezone parsing of Cisco module ingest pipelines. {pull}13893[13893]
- Fix timezone parsing of logstash module ingest pipelines. {pull}13890[13890]
- cisco asa and ftd filesets: Fix parsing of message 106001. {issue}13891[13891] {pull}13903[13903]
- Fix timezone parsing of iptables, mssql and panw module ingest pipelines. {pull}13926[13926]
Expand Down
332 changes: 166 additions & 166 deletions x-pack/filebeat/module/cisco/asa/test/asa.log-expected.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"@timestamp": "2018-12-31T23:00:27.000-02:00",
"@timestamp": "2019-01-01T01:00:27.000-02:00",
"cisco.asa.message_id": "999999",
"event.action": "firewall-rule",
"event.code": 999999,
Expand All @@ -22,7 +22,7 @@
]
},
{
"@timestamp": "2018-12-31T23:02:12.000-02:00",
"@timestamp": "2019-01-01T01:02:12.000-02:00",
"cisco.asa.message_id": "106001",
"cisco.asa.source_interface": "eth0",
"destination.ip": "192.168.33.12",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"@timestamp": "2019-10-10T08:21:36.000-02:00",
"@timestamp": "2019-10-10T10:21:36.000-02:00",
"cisco.asa.icmp_code": 0,
"cisco.asa.mapped_source_ip": "10.0.55.66",
"cisco.asa.message_id": "302021",
Expand Down
Loading

0 comments on commit 43eb364

Please sign in to comment.