Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
frontend
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
Harbor 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
SACI
frontend
Merge requests
!1
/analysis route prototype
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
/analysis route prototype
saci/frontend#3
into
main
Overview
0
Commits
7
Pipelines
0
Changes
9
Merged
pedro f
requested to merge
saci/frontend#3
into
main
7 months ago
Overview
0
Commits
7
Pipelines
0
Changes
9
Expand
#3 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
0ac66825
7 commits,
7 months ago
9 files
+
221
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
src/app/analysis/[id]/page.js
0 → 100644
+
35
−
0
Options
import
{
AnalysisMetadata
,
SampleMetadata
}
from
"
@/components/analysis/metadata
"
;
import
ActivityTimeline
from
"
@/components/analysis/activity-timeline
"
;
import
RedirectButton
from
"
@/components/redirect-button
"
;
import
"
@/styles/analysis/page.css
"
;
export
default
function
Analysis
({
params
:
{
id
}
})
{
return
(
<
div
>
<
div
className
=
"
pagerow
"
>
<
AnalysisMetadata
status
=
"
running
"
id
=
"
5e6c83bf-44b3-4f9e-bd45-683585439eed
"
driver
=
"
1.3.8
"
template
=
"
9011
"
start
=
"
08/10/24 11:00:10 -03
"
end
=
"
08/10/24 11:07:39 -03
"
/>
<
SampleMetadata
filename
=
"
MALWARE2.exe
"
extension
=
"
.exe
"
mimetype
=
"
application/octet-stream
"
size
=
"
2.7 MiB
"
lastmod
=
"
08/10/24 11:00:10 -03
"
md5
=
"
6cb20b4c787c4ea918e301310b2667f5
"
sha1
=
"
5b5d921d69336d06837422438cd0c5225fc78a74
"
sha256
=
"
83121822f08691834102f7652c673133deb98a134110a0fea22a27b2ccd5d966
"
/>
<
/div
>
<
div
className
=
"
pagerow
"
>
<
ActivityTimeline
/>
<
/div
>
<
RedirectButton
name
=
"
go back
"
href
=
"
/
"
/>
<
/div
>
);
}
Loading