Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
13562e90
Commit
13562e90
authored
Mar 29, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(netflow) document parse_flow
parent
68d3a415
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
parse.py
src/opnsense/scripts/netflow/lib/parse.py
+10
-1
No files found.
src/opnsense/scripts/netflow/lib/parse.py
View file @
13562e90
...
...
@@ -29,6 +29,7 @@
import
flowd
import
glob
# define field
PARSE_FLOW_FIELDS
=
[
{
'check'
:
flowd
.
FIELD_OCTETS
,
'target'
:
'octets'
},
{
'check'
:
flowd
.
FIELD_PACKETS
,
'target'
:
'packets'
},
...
...
@@ -44,30 +45,38 @@ PARSE_FLOW_FIELDS = [
{
'check'
:
flowd
.
FIELD_GATEWAY_ADDR
,
'target'
:
'gateway_addr'
},
{
'check'
:
flowd
.
FIELD_FLOW_TIMES
,
'target'
:
'netflow_ver'
}]
# location of flowd logfiles to use
FLOWD_LOG_FILES
=
'/var/log/flowd.log*'
def
parse_flow
(
recv_stamp
):
""" parse flowd logs and yield records (dict type)
:param recv_stamp: last receive timestamp (recv)
:return: iterator flow details
"""
parse_done
=
False
for
filename
in
sorted
(
glob
.
glob
(
FLOWD_LOG_FILES
)):
if
parse_done
:
# log file contains older data (recv_stamp), break
break
flog
=
flowd
.
FlowLog
(
filename
)
for
flow
in
flog
:
flow_record
=
dict
()
if
flow
.
has_field
(
flowd
.
FIELD_RECV_TIME
):
# receive timestamp
flow_record
[
'recv'
]
=
flow
.
recv_sec
+
flow
.
recv_usec
/
1000.0
if
flow_record
[
'recv'
]
<=
recv_stamp
:
# do not parse next flow archive (oldest reached)
parse_done
=
True
continue
if
flow
.
has_field
(
flowd
.
FIELD_FLOW_TIMES
):
# calculate flow start, end, duration in ms
flow_record
[
'flow_end'
]
=
(
flow
.
recv_sec
-
flow
.
flow_finish
/
1000.0
)
flow_record
[
'duration_ms'
]
=
(
flow
.
flow_finish
-
flow
.
flow_start
)
flow_record
[
'flow_start'
]
=
flow_record
[
'flow_end'
]
-
flow_record
[
'duration_ms'
]
/
1000.0
# handle source data
for
flow_field
in
PARSE_FLOW_FIELDS
:
if
flow
.
has_field
(
flow_field
[
'check'
]):
flow_record
[
flow_field
[
'target'
]]
=
getattr
(
flow
,
flow_field
[
'target'
])
else
:
flow_record
[
flow_field
[
'target'
]]
=
None
yield
flow_record
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment