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
23f14082
Commit
23f14082
authored
Apr 05, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(trafficshaper) add quick tab navigation
parent
1cfbe19b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
80 additions
and
1 deletion
+80
-1
Menu.xml
...sense/mvc/app/models/OPNsense/TrafficShaper/Menu/Menu.xml
+5
-1
index.volt
src/opnsense/mvc/app/views/OPNsense/TrafficShaper/index.volt
+7
-0
flowd_aggregate_metadata.py
src/opnsense/scripts/netflow/flowd_aggregate_metadata.py
+62
-0
actions_netflow.conf
src/opnsense/service/conf/actions.d/actions_netflow.conf
+6
-0
No files found.
src/opnsense/mvc/app/models/OPNsense/TrafficShaper/Menu/Menu.xml
View file @
23f14082
<menu>
<menu>
<Firewall>
<Firewall>
<TrafficShaper
order=
"40"
VisibleName=
"Traffic Shaper"
cssClass=
"fa fa-filter fa-fw"
>
<TrafficShaper
order=
"40"
VisibleName=
"Traffic Shaper"
cssClass=
"fa fa-filter fa-fw"
>
<Settings
order=
"10"
url=
"/ui/trafficshaper/"
/>
<Settings
order=
"10"
url=
"/ui/trafficshaper/"
>
<Pipes
VisibleName=
"Pipes"
url=
"/ui/trafficshaper/#pipes"
/>
<Queues
VisibleName=
"Queues"
url=
"/ui/trafficshaper/#queues"
/>
<Rules
VisibleName=
"Rules"
url=
"/ui/trafficshaper/#rules"
/>
</Settings>
<Status
order=
"20"
url=
"/diag_limiter_info.php"
/>
<Status
order=
"20"
url=
"/diag_limiter_info.php"
/>
</TrafficShaper>
</TrafficShaper>
</Firewall>
</Firewall>
...
...
src/opnsense/mvc/app/views/OPNsense/TrafficShaper/index.volt
View file @
23f14082
...
@@ -93,6 +93,13 @@ POSSIBILITY OF SUCH DAMAGE.
...
@@ -93,6 +93,13 @@ POSSIBILITY OF SUCH DAMAGE.
});
});
});
});
// update history on tab state and implement navigation
if (window.location.hash != "") {
$('a[href="' + window.location.hash + '"]').click()
}
$('.nav-tabs a').on('shown.bs.tab', function (e) {
history.pushState(null, null, e.target.hash);
});
});
});
...
...
src/opnsense/scripts/netflow/flowd_aggregate_metadata.py
0 → 100755
View file @
23f14082
#!/usr/local/bin/python2.7
"""
Copyright (c) 2016 Ad Schellevis
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
--------------------------------------------------------------------------------------
fetch flowd aggregate metadata
"""
import
sys
import
ujson
import
datetime
from
lib.aggregate
import
AggMetadata
import
lib.aggregates
result
=
dict
()
# load global metadata
metadata
=
AggMetadata
()
result
[
'last_sync'
]
=
metadata
.
last_sync
()
# fetch aggregators
result
[
'aggregators'
]
=
dict
()
for
agg_class
in
lib
.
aggregates
.
get_aggregators
():
result
[
'aggregators'
][
agg_class
.
__name__
]
=
{
'resolutions'
:
list
()}
for
resolution
in
agg_class
.
resolutions
():
result
[
'aggregators'
][
agg_class
.
__name__
][
'resolutions'
]
.
append
(
resolution
)
# output result
if
len
(
sys
.
argv
)
>
1
and
'json'
in
sys
.
argv
:
# json format
print
(
ujson
.
dumps
(
result
))
else
:
# plain text format
print
(
'Flowd aggregations [last sync
%
s]'
%
datetime
.
datetime
.
fromtimestamp
(
result
[
'last_sync'
])
.
strftime
(
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
)
)
print
(
'
\n
Aggregators:'
)
for
aggregator
in
result
[
'aggregators'
]:
print
(
'
%
s'
%
aggregator
)
for
resolution
in
result
[
'aggregators'
][
aggregator
][
'resolutions'
]:
print
(
' +
%
d seconds'
%
resolution
)
src/opnsense/service/conf/actions.d/actions_netflow.conf
View file @
23f14082
...
@@ -67,3 +67,9 @@ message:restart netflow data aggregator
...
@@ -67,3 +67,9 @@ message:restart netflow data aggregator
command
:/
usr
/
local
/
etc
/
rc
.
d
/
flowd_aggregate
status
||
exit
0
command
:/
usr
/
local
/
etc
/
rc
.
d
/
flowd_aggregate
status
||
exit
0
type
:
script_output
type
:
script_output
message
:
request
netflow
data
aggregator
status
message
:
request
netflow
data
aggregator
status
[
aggregate
.
metadata
]
command
:/
usr
/
local
/
opnsense
/
scripts
/
netflow
/
flowd_aggregate_metadata
.
py
parameters
:%
s
type
:
script_output
message
:
request
netflow
data
aggregator
metadata
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