Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ZhouShuya
OpenXG-RAN
Commits
0654f3fc
Commit
0654f3fc
authored
Apr 25, 2021
by
hardy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
case where data is not found : do not insert row, do not update charts
parent
14cc352a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
22 deletions
+25
-22
ci-scripts/cls_rt_monitor.py
ci-scripts/cls_rt_monitor.py
+25
-22
No files found.
ci-scripts/cls_rt_monitor.py
View file @
0654f3fc
...
@@ -173,12 +173,15 @@ def build_RT_Row(Branch,Commit,keys,filename):
...
@@ -173,12 +173,15 @@ def build_RT_Row(Branch,Commit,keys,filename):
for
k
in
keys
:
for
k
in
keys
:
tmp
=
re
.
match
(
r'^(?P<metric>.*):\s+(?P<avg>\d+\.\d+) us;\s+\d+;\s+(?P<max>\d+\.\d+) us;'
,
real_time_stats
[
k
])
tmp
=
re
.
match
(
r'^(?P<metric>.*):\s+(?P<avg>\d+\.\d+) us;\s+\d+;\s+(?P<max>\d+\.\d+) us;'
,
real_time_stats
[
k
])
if
tmp
is
not
None
:
metric
=
tmp
.
group
(
'metric'
)
metric
=
tmp
.
group
(
'metric'
)
avg
=
tmp
.
group
(
'avg'
)
avg
=
tmp
.
group
(
'avg'
)
max
=
tmp
.
group
(
'max'
)
max
=
tmp
.
group
(
'max'
)
row
.
append
(
float
(
avg
))
row
.
append
(
float
(
avg
))
row
.
append
(
float
(
max
))
row
.
append
(
float
(
max
))
if
len
(
row
)
==
3
:
#if row was not updated (missing data for ex), then return an empty row
row
=
[]
return
row
return
row
#-----------------------------------------------------------
#-----------------------------------------------------------
...
@@ -294,10 +297,10 @@ def gNB_RT_monitor(ranBranch, ranCommitID, eNBlogFile):
...
@@ -294,10 +297,10 @@ def gNB_RT_monitor(ranBranch, ranCommitID, eNBlogFile):
#open gsheet
#open gsheet
gRT
=
gSheet
(
"/home/oaicicd/ci_gsheet_creds.json"
,
'RealTime Monitor'
,
'timeseries'
,
columns
,
10000
,
50
)
gRT
=
gSheet
(
"/home/oaicicd/ci_gsheet_creds.json"
,
'RealTime Monitor'
,
'timeseries'
,
columns
,
10000
,
50
)
#
insert row
#
build row, but insert row and update charts only if data were found
row
=
build_RT_Row
(
ranBranch
,
ranCommitID
,
keys
,
eNBlogFile
)
row
=
build_RT_Row
(
ranBranch
,
ranCommitID
,
keys
,
eNBlogFile
)
if
len
(
row
)
!=
0
:
gRT
.
insertRow
(
row
)
gRT
.
insertRow
(
row
)
#updating charts
#updating charts
#will plot avg and max on the same chart, these 2 columns have to be side by side
#will plot avg and max on the same chart, these 2 columns have to be side by side
#spreadsheet , chart name, chart type, x title , y title, start row inc header, end row, start col, end col
#spreadsheet , chart name, chart type, x title , y title, start row inc header, end row, start col, end col
...
...
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