Skip to content
Snippets Groups Projects
Commit ae0b3bf5 authored by Radko Krkoš's avatar Radko Krkoš
Browse files

flowmon-ads: Fix comment indentation in ads field definition

parent 36dd92e0
No related branches found
No related tags found
No related merge requests found
...@@ -107,21 +107,21 @@ def proto_list(pl): ...@@ -107,21 +107,21 @@ def proto_list(pl):
ads_fields = ( ads_fields = (
('ID', str), # Unique id within ADS db ('ID', str), # Unique id within ADS db
('Detection time', iso_time), # Timestamp of event generation ('Detection time', iso_time), # Timestamp of event generation
('FirstFlow', iso_time), # Timestamp of the first Flow on which was based the event detection ('FirstFlow', iso_time), # Timestamp of the first Flow on which was based the event detection
('Type', str), # Type of event, in fact a reference to the detection method, which recognized the event ('Type', str), # Type of event, in fact a reference to the detection method, which recognized the event
('TypeDesc', str), # Event type description ('TypeDesc', str), # Event type description
('Perspective', str), # Perspective name ('Perspective', str), # Perspective name
('Severity', str), # Priority based on perspective ('Severity', str), # Priority based on perspective
('Detail', str), # Detailed information on the event ('Detail', str), # Detailed information on the event
('Ports', int_list), # List of ports (if identified) ('Ports', int_list), # List of ports (if identified)
('Protocol', proto_list), # IP protocol (if identified) ('Protocol', proto_list), # IP protocol (if identified)
('Source', ip_list), # Event originator (IP address) ('Source', ip_list), # Event originator (IP address)
('CapturedSource', str), # DNS name assigned to the IP address at the time of event detection ('CapturedSource', str), # DNS name assigned to the IP address at the time of event detection
('Targets', ip_list), # Event targets (a list of IP addresses) ('Targets', ip_list), # Event targets (a list of IP addresses)
('NetFlowSource', str), # Flow data source on which the event has been generated ('NetFlowSource', str), # Flow data source on which the event has been generated
('UserIdentity', str) # User ID from domain controller ('UserIdentity', str) # User ID from domain controller
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment