Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-deploy-ui
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-deploy-ui
Commits
e0e646e6
Commit
e0e646e6
authored
4 months ago
by
EREBUS_DMN\jsz
Committed by
Johanna Szepanski
4 months ago
Browse files
Options
Downloads
Patches
Plain Diff
removed snackbar error, updated to rtk query and some minor cleanup
parent
f1c5dd5c
No related branches found
No related tags found
2 merge requests
!612
Release 5.0.0
,
!559
CE-3164: Network error IOC log stream
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/common/Loki/LokiPanel.js
+18
-70
18 additions, 70 deletions
src/components/common/Loki/LokiPanel.js
src/components/deployments/DeploymentJobOutput.js
+0
-8
0 additions, 8 deletions
src/components/deployments/DeploymentJobOutput.js
with
18 additions
and
78 deletions
src/components/common/Loki/LokiPanel.js
+
18
−
70
View file @
e0e646e6
...
...
@@ -6,14 +6,9 @@ import { TimeRange } from "../Inputs/TimeRange";
import
{
PopoutButton
}
from
"
../Buttons/PopoutButton
"
;
import
{
useCustomSnackbar
}
from
"
../snackbar/Snackbar
"
;
import
{
closeSnackbar
}
from
"
notistack
"
;
import
{
apiContext
}
from
"
../../../api/DeployApi
"
;
import
{
useAPIMethod
,
usePolling
,
formatDateAndTime
}
from
"
@ess-ics/ce-ui-common
"
;
import
{
formatDateAndTime
}
from
"
@ess-ics/ce-ui-common
"
;
import
Convert
from
"
ansi-to-html
"
;
import
{
getErrorMessage
,
isAbortError
}
from
"
../Helper
"
;
import
{
isAbortError
}
from
"
../Helper
"
;
const
TIME_RANGE_VALUES
=
[
{
...
...
@@ -35,17 +30,6 @@ const TIME_RANGE_VALUES = [
const
LOG_POLL_INTERVAL
=
5000
;
export
function
LokiPanel
({
hostName
,
iocName
,
isSyslog
})
{
const
showWarning
=
useCustomSnackbar
();
const
client
=
useContext
(
apiContext
);
const
handleError
=
useCallback
(
(
error
)
=>
{
if
(
error
&&
!
isAbortError
(
error
))
{
showWarning
(
getErrorMessage
(
error
));
}
},
[
showWarning
]
);
const
[
timeRange
,
setTimeRange
]
=
useState
(
720
);
const
[
logDialogOpen
,
setLogDialogOpen
]
=
useState
(
false
);
const
[
periodChange
,
setPeriodChange
]
=
useState
(
false
);
...
...
@@ -114,46 +98,23 @@ export function LokiPanel({ hostName, iocName, isSyslog }) {
const
params
=
useMemo
(
()
=>
({
host
_n
ame
:
hostName
,
ioc
_n
ame
:
iocName
,
time
_r
ange
:
timeRange
host
N
ame
:
hostName
,
ioc
N
ame
:
iocName
,
time
R
ange
:
timeRange
}),
[
hostName
,
iocName
,
timeRange
]
);
const
{
value
:
sysLogData
,
wrapper
:
getSysLogData
,
loading
:
sysLoading
,
error
:
sysLogError
,
abort
:
getSysLogDataAbort
}
=
useAPIMethod
({
fcn
:
client
.
apis
.
Hosts
.
fetchSyslogLines
,
call
:
false
,
params
});
const
[
getSysLogData
,
{
data
:
sysLogData
,
error
:
sysLogError
}]
=
useLazyFetchSyslogLinesQuery
({
pollingInterval
:
LOG_POLL_INTERVAL
});
const
{
value
:
procServLog
,
wrapper
:
getProcServLog
,
loading
:
procServLoading
,
error
:
procServLogError
,
abort
:
getProcServLogAbort
}
=
useAPIMethod
({
fcn
:
client
.
apis
.
IOCs
.
fetchProcServLogLines
,
call
:
false
,
params
});
const
[
getProcServLog
,
{
data
:
procServLog
,
error
:
procServLogError
}]
=
useLazyFetchProcServLogLinesQuery
({
pollingInterval
:
LOG_POLL_INTERVAL
});
// show sysLogErrors on snackBar
useEffect
(()
=>
{
handleError
(
sysLogError
);
},
[
sysLogError
,
handleError
]);
// show procServErrors on snackBar
useEffect
(()
=>
{
handleError
(
procServLogError
);
},
[
procServLogError
,
handleError
]);
const
hasLogError
=
!!
sysLogError
||
!!
procServLogError
;
const
hasLogData
=
!!
sysLogData
||
!!
procServLog
;
const
hasAbortError
=
isAbortError
(
sysLogError
)
||
isAbortError
(
procServLogError
);
const
handleTimeRangeChange
=
(
event
)
=>
{
setPeriodChange
(
true
);
...
...
@@ -174,26 +135,13 @@ export function LokiPanel({ hostName, iocName, isSyslog }) {
};
},
[
alertIds
]);
const
updateLogs
=
useCallback
(()
=>
{
useEffect
(()
=>
{
if
(
isSyslog
===
true
)
{
getSysLogData
(
hostName
,
timeRange
);
getSysLogData
(
params
);
}
else
{
getProcServLog
(
hostName
,
iocName
,
timeRange
);
getProcServLog
(
params
);
}
},
[
getSysLogData
,
getProcServLog
,
hostName
,
iocName
,
isSyslog
,
timeRange
]);
const
hasLogError
=
!!
sysLogError
||
!!
procServLogError
;
const
hasLogData
=
!!
sysLogData
||
!!
procServLog
;
const
hasAbortError
=
isAbortError
(
sysLogError
)
||
isAbortError
(
procServLogError
);
const
logError
=
sysLogError
||
procServLogError
;
usePolling
(
updateLogs
,
sysLoading
||
procServLoading
||
hasLogError
,
LOG_POLL_INTERVAL
,
isSyslog
?
getSysLogDataAbort
:
getProcServLogAbort
);
},
[
getSysLogData
,
getProcServLog
,
isSyslog
,
params
]);
useEffect
(()
=>
{
setHtml
(
...
...
@@ -223,7 +171,7 @@ export function LokiPanel({ hostName, iocName, isSyslog }) {
};
if
(
hasLogError
&&
!
hasAbortError
)
{
return
<
Alert
severity
=
"
error
"
>
{
getErrorMessage
(
logError
)}
<
/Alert
>
;
return
<
Api
Alert
Error
error
=
{
sysLogError
||
procServLogError
}
/
>
;
}
if
(
!
hasLogData
&&
!
hasLogError
)
{
...
...
This diff is collapsed.
Click to expand it.
src/components/deployments/DeploymentJobOutput.js
+
0
−
8
View file @
e0e646e6
...
...
@@ -13,7 +13,6 @@ import { LogStreamConsoleDialog } from "../common/LogStream/LogStreamConsoleDial
import
{
PopoutButton
}
from
"
../common/Buttons/PopoutButton
"
;
import
{
Alert
,
LinearProgress
,
Stack
}
from
"
@mui/material
"
;
import
{
getErrorMessage
,
isAbortError
}
from
"
../common/Helper
"
;
import
useCustomSnackbar
from
"
../common/snackbar
"
;
const
LOG_POLL_INTERVAL
=
5000
;
...
...
@@ -27,7 +26,6 @@ export function DeploymentJobOutput({ job }) {
}),
[
job
]
);
const
showWarning
=
useCustomSnackbar
();
const
{
value
:
log
,
...
...
@@ -58,12 +56,6 @@ export function DeploymentJobOutput({ job }) {
abortGetLogById
);
useEffect
(()
=>
{
if
(
logError
&&
!
hasAbortError
)
{
showWarning
(
getErrorMessage
(
logError
));
}
},
[
logError
,
showWarning
]);
useEffect
(()
=>
{
finalResultsNeeded
.
current
=
true
;
},
[
job
.
jobId
]);
...
...
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