Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inventory-provider
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
geant-swd
dashboardv3
inventory-provider
Commits
cc666821
Commit
cc666821
authored
4 years ago
by
Robert Latta
Browse files
Options
Downloads
Patches
Plain Diff
added calculated-speed to circuit info
parent
d0dd3cc2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
inventory_provider/tasks/worker.py
+36
-3
36 additions, 3 deletions
inventory_provider/tasks/worker.py
with
36 additions
and
3 deletions
inventory_provider/tasks/worker.py
+
36
−
3
View file @
cc666821
...
@@ -3,6 +3,7 @@ import functools
...
@@ -3,6 +3,7 @@ import functools
import
json
import
json
import
logging
import
logging
import
os
import
os
import
re
import
subprocess
import
subprocess
import
tempfile
import
tempfile
import
threading
import
threading
...
@@ -481,6 +482,36 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
...
@@ -481,6 +482,36 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
port_id_services
=
defaultdict
(
list
)
port_id_services
=
defaultdict
(
list
)
interface_services
=
defaultdict
(
list
)
interface_services
=
defaultdict
(
list
)
def
_convert_to_bits
(
value
,
unit
):
unit
=
unit
.
lower
()
conversions
=
{
'
m
'
:
1000000
,
'
mb
'
:
1000000
,
'
g
'
:
1000000000
,
'
gbe
'
:
1000000000
,
}
return
int
(
value
)
*
conversions
[
unit
]
def
_get_speed
(
circuit_id
):
c
=
hierarchy
[
circuit_id
]
pattern
=
re
.
compile
(
r
'
^(\d+)([a-zA-z]+)$
'
)
m
=
pattern
.
match
(
c
[
'
speed
'
])
if
m
:
try
:
return
_convert_to_bits
(
m
[
1
],
m
[
2
])
except
KeyError
as
e
:
logger
.
debug
(
f
'
Could not find key:
{
e
}
'
f
'
for circuit:
{
circuit_id
}
'
)
return
0
else
:
if
c
[
'
circuit-type
'
]
==
'
service
'
\
or
c
[
'
product
'
].
lower
()
==
'
ethernet
'
:
return
sum
(
(
_get_speed
(
x
)
for
x
in
c
[
'
carrier-circuits
'
])
)
else
:
return
0
def
_populate_hierarchy
():
def
_populate_hierarchy
():
nonlocal
hierarchy
nonlocal
hierarchy
hierarchy
=
{
d
[
'
id
'
]:
d
for
d
in
ims_data
.
get_circuit_hierarchy
(
ds1
)}
hierarchy
=
{
d
[
'
id
'
]:
d
for
d
in
ims_data
.
get_circuit_hierarchy
(
ds1
)}
...
@@ -591,7 +622,6 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
...
@@ -591,7 +622,6 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
f
"
{
details
[
'
interface_name
'
]
}
"
f
"
{
details
[
'
interface_name
'
]
}
"
circuits
=
port_id_services
.
get
(
details
[
'
port_id
'
],
[])
circuits
=
port_id_services
.
get
(
details
[
'
port_id
'
],
[])
# add fibre-routes to circuits
for
circ
in
circuits
:
for
circ
in
circuits
:
circ
[
'
fibre-routes
'
]
=
\
circ
[
'
fibre-routes
'
]
=
\
[{
[{
...
@@ -601,6 +631,7 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
...
@@ -601,6 +631,7 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
}
for
x
in
set
(
_get_fibre_routes
(
circ
[
'
id
'
]))]
}
for
x
in
set
(
_get_fibre_routes
(
circ
[
'
id
'
]))]
circ
[
'
top-level-services
'
]
=
\
circ
[
'
top-level-services
'
]
=
\
get_top_level_services
(
circ
[
'
id
'
])
get_top_level_services
(
circ
[
'
id
'
])
circ
[
'
calculated-speed
'
]
=
_get_speed
(
circ
[
'
id
'
])
_format_service
(
circ
)
_format_service
(
circ
)
interface_services
[
k
].
extend
(
circuits
)
interface_services
[
k
].
extend
(
circuits
)
...
@@ -610,14 +641,16 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
...
@@ -610,14 +641,16 @@ def update_circuit_hierarchy_and_port_id_services(self, use_current=False):
else
:
else
:
r
=
get_next_redis
(
InventoryTask
.
config
)
r
=
get_next_redis
(
InventoryTask
.
config
)
rp
=
r
.
pipeline
()
rp
=
r
.
pipeline
()
for
k
in
r
.
scan_iter
(
'
ims:circuit_hierarchy:*
'
,
count
=
2
000
):
for
k
in
r
.
scan_iter
(
'
ims:circuit_hierarchy:*
'
,
count
=
1
000
):
rp
.
delete
(
k
)
rp
.
delete
(
k
)
for
k
in
r
.
scan_iter
(
'
ims:interface_services:*
'
,
count
=
2
000
):
for
k
in
r
.
scan_iter
(
'
ims:interface_services:*
'
,
count
=
1
000
):
rp
.
delete
(
k
)
rp
.
delete
(
k
)
rp
.
execute
()
rp
.
execute
()
rp
=
r
.
pipeline
()
rp
=
r
.
pipeline
()
for
circ
in
hierarchy
.
values
():
for
circ
in
hierarchy
.
values
():
rp
.
set
(
f
'
ims:circuit_hierarchy:
{
circ
[
"
id
"
]
}
'
,
json
.
dumps
([
circ
]))
rp
.
set
(
f
'
ims:circuit_hierarchy:
{
circ
[
"
id
"
]
}
'
,
json
.
dumps
([
circ
]))
rp
.
execute
()
rp
=
r
.
pipeline
()
for
k
,
v
in
interface_services
.
items
():
for
k
,
v
in
interface_services
.
items
():
rp
.
set
(
rp
.
set
(
f
'
ims:interface_services:
{
k
}
'
,
f
'
ims:interface_services:
{
k
}
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment