monasca-analytics/monasca_analytics/ldp/iptables_ldp.py

83 lines
2.6 KiB
Python

#!/usr/bin/env python
# Copyright (c) 2016 Hewlett Packard Enterprise Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import json
import logging
import schema
from monasca_analytics.ingestor import iptables as ip_ing
import monasca_analytics.ldp.base as bt
from monasca_analytics.sml import svm_one_class
logger = logging.getLogger(__name__)
FEATURES = "features"
MATRIX = "matrix"
class IptablesLDP(bt.BaseLDP):
"""An anomaly detection life module"""
@staticmethod
def validate_config(_config):
return schema.Schema({
"module": schema.And(basestring,
lambda i: not any(c.isspace() for c in i)),
}).validate(_config)
@staticmethod
def get_default_config():
return {"module": IptablesLDP.__name__}
def map_dstream(self, dstream):
"""Detect anomalies in a dstream using the learned classifier
:param dstream: pyspark.streaming.DStream
"""
data = self._data
return dstream.flatMap(lambda r:
self._detect_anomalies(r, data))
def _detect_anomalies(self, rdd_entry, data):
"""Classifies and marks the RDD entry as anomalous or non-anomalous
:type rdd_entry: pyspark.RDD
:param rdd_entry: entry to be classified
:type data: dict
:param data: contains the features and the classifier
"""
rdd_entry = json.loads(rdd_entry)
new_entries = []
events = rdd_entry[ip_ing.RDD_EVENTS]
features = data[FEATURES]
classifier = data[MATRIX]
if features is None or classifier is None:
return events
X = ip_ing.IptablesIngestor._vectorize_events(events, features)
Y = classifier.predict(X)
for i in range(len(events)):
event = events[i]
event["ctime"] = rdd_entry["ctime"]
if Y[0] == svm_one_class.ANOMALY:
event["anomalous"] = True
else:
event["anomalous"] = False
new_entries.append(event)
return new_entries