-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is planing to update for Kibana 5 ? #9
Comments
It is planned towards the end of the month - however any feedback on these dashboards import to Kibana 5 is welcome! |
@pevma FWIW patch bellow to the stock logstash filter (seems to) gets most stuff to work, as is, out of the box under elk (last tested with 5.2.0) --- logstash.conf.l4 2017-02-03 18:45:24.000000000 +0000
+++ logstash.conf 2017-02-03 18:46:16.000000000 +0000
@@ -11,10 +11,21 @@
match => [ "timestamp", "ISO8601" ]
}
ruby {
- code => "if event['event_type'] == 'fileinfo'; event['fileinfo']['type']=event['fileinfo']['magic'].to_s.split(',')[0]; end;"
+ code => "
+ if event.get('[event_type]') == 'fileinfo'
+ event.set('[fileinfo][type]', event.get('[fileinfo][magic]').to_s.split(',')[0])
+ end
+ "
}
ruby {
- code => "if event['event_type'] == 'alert'; sp = event['alert']['signature'].to_s.split(' group '); if (sp.length == 2) and /\A\d+\z/.match(sp[1]); event['alert']['signature'] = sp[0] ;end; end;"
+ code => "
+ if event.get('[event_type]') == 'alert'
+ sp = event.get('[alert][signature]').to_s.split(' group ')
+ if (sp.length == 2) and /\A\d+\z/.match(sp[1])
+ event.set('[alert][signature]', sp[0])
+ end
+ end
+ "
}
metrics { And thanks && congrats to the whole team for the great work! |
@AntonioMeireles - Thanks a bunch for the feedback ! Very useful! |
What is the logstash.config file that you use for these dashboards? I want to upgrade to ELK 5.2 stack, would anyone mind sharing a config file that uses the changes @AntonioMeireles mentioned? |
@mliu1212 something along ...
|
Thanks I will try that out. Quick question - is your input file not coming from suricata eve.json? I noticed you are using beats. |
I'm ingesting plain eve.json thru filebeat on suricata host into a fattish
ELK cluster on top of kubernetes ...
(Filebeat is way simpler than using logstash on sensor as shipper)
António
…On Thu, 9 Feb 2017 at 17:09, mliu1212 ***@***.***> wrote:
Thanks I will try that out. Quick question - is your input file not coming
from suricata eve.json? I noticed you are using beats.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAtYZz9ptoCtbaOLMEClwxHGLAXDmd4mks5ra0gugaJpZM4L1F0O>
.
|
Ah so your filebeat configuration has the eve.json as the input, and logstash as the output? |
Yes
…On Thu, 9 Feb 2017 at 17:25, mliu1212 ***@***.***> wrote:
Ah so your filebeat configuration has the eve.json as the input, and
logstash as the output?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAtYZ37o5lky2lrVd2HGNp_ZLWFogTrpks5ra0wLgaJpZM4L1F0O>
.
|
Any news ? |
There is planned work on that this and next week. |
Yes, sure. You can send out all needed information to my email : [email protected] |
perfect - thanks for the help ! |
@pevma - can you plz add me to the "beta" too ? (email address is the one in GitHub logs) |
As soon as we have something in test sequence i will let you know guys. Thanks! |
Hey, @pevma, any updates/news for us ? |
@SboichakovDmitriy @AntonioMeireles and anyone else willing to test and feedback - You can use the same logstash config but with the adjustment @AntonioMeireles mentioned above. |
@pevma THANKS! will get a look && report. btw my logstash config above can be AFAICT trimmed to ...
|
FYI - We also have upgrade procedure ready for testing for SELKS 3 to SELKS 4 upgrades - https://github.com/StamusNetworks/SELKS/wiki/SELKS-3.0-to-SELKS-4.0-upgrades---testing |
@pevma Hi! (sorry lag! && many, many thanks for your hard work)
Also, |
@pevma also |
@AntonioMeireles - thanks for the input! noted on the errors ...doing some fixing and updating the repo soon. One problem about substituting the "raw" with "keyword" is that we will loose backwards compatibility I think. |
Fixes bugs with regards to curl and config.json as reported in - StamusNetworks/KTS#9 (comment)
@AntonioMeireles - addressed most of the stuff here - https://github.com/StamusNetworks/KTS5/commits/master - master updated. |
No description provided.
The text was updated successfully, but these errors were encountered: