Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin-telecom
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
Paul Graydon
wendelin-telecom
Commits
0a1c18a7
Commit
0a1c18a7
authored
Oct 21, 2024
by
Paul Graydon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wendelin_telecom_base: Sort KPI graph data chronologically
Improve support for out-of-order KPI data arrays
parent
aa8a86c6
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
4 deletions
+10
-4
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_rab_kpi_js.js
...base/PathTemplateItem/web_page_module/ors_e_rab_kpi_js.js
+3
-0
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_rab_kpi_js.xml
...ase/PathTemplateItem/web_page_module/ors_e_rab_kpi_js.xml
+2
-2
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_utran_ip_throughput_kpi_js.js
...eItem/web_page_module/ors_e_utran_ip_throughput_kpi_js.js
+3
-0
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_utran_ip_throughput_kpi_js.xml
...Item/web_page_module/ors_e_utran_ip_throughput_kpi_js.xml
+2
-2
No files found.
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_rab_kpi_js.js
View file @
0a1c18a7
...
...
@@ -32,6 +32,9 @@
vInitialEPSBEstabSR_hi
=
[],
vAddedEPSBEstabSR_lo
=
[],
vAddedEPSBEstabSR_hi
=
[];
graph_data
.
sort
(
function
(
a
,
b
)
{
return
(
a
[
0
]
-
b
[
0
]);
});
for
(
i
=
0
;
i
<
graph_data
.
length
;
i
+=
1
)
{
date
.
push
(
new
Date
(
graph_data
[
i
][
0
]
*
1000
));
vInitialEPSBEstabSR_lo
.
push
(
graph_data
[
i
][
1
]);
...
...
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_rab_kpi_js.xml
View file @
0a1c18a7
...
...
@@ -238,7 +238,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
101
8.61980.60679.28364
</string>
</value>
<value>
<string>
101
9.54468.57368.35892
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -258,7 +258,7 @@
</tuple>
<state>
<tuple>
<float>
172
4920139.77
</float>
<float>
172
8632990.63
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_utran_ip_throughput_kpi_js.js
View file @
0a1c18a7
...
...
@@ -118,6 +118,9 @@
raw_ul_hi
,
download_link
=
gadget
.
element
.
querySelector
(
'
.graph-download-link
'
),
upload_link
=
gadget
.
element
.
querySelector
(
'
.graph-upload-link
'
);
graph_data
.
sort
(
function
(
a
,
b
)
{
return
(
a
[
0
]
-
b
[
0
]);
});
for
(
i
=
0
;
i
<
graph_data
.
length
;
i
+=
1
)
{
if
(
date
.
indexOf
(
graph_data
[
i
][
0
])
==
-
1
)
{
date
.
push
(
graph_data
[
i
][
0
]);
...
...
bt5/wendelin_telecom_base/PathTemplateItem/web_page_module/ors_e_utran_ip_throughput_kpi_js.xml
View file @
0a1c18a7
...
...
@@ -238,7 +238,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
101
8.60794.3206.50773
</string>
</value>
<value>
<string>
101
9.54468.57368.35892
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -258,7 +258,7 @@
</tuple>
<state>
<tuple>
<float>
172
4849600.03
</float>
<float>
172
8633034.89
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
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