Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Dima Krasner
Sharkey
Commits
7e4091c7
Commit
7e4091c7
authored
8 years ago
by
Aya Morisawa
Browse files
Options
Downloads
Patches
Plain Diff
Extract MachineInfo
parent
2fd6ddf8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/index.ts
+2
-8
2 additions, 8 deletions
src/index.ts
src/utils/machineInfo.ts
+13
-0
13 additions, 0 deletions
src/utils/machineInfo.ts
with
15 additions
and
8 deletions
src/index.ts
+
2
−
8
View file @
7e4091c7
...
...
@@ -18,6 +18,7 @@ const portUsed = require('tcp-port-used');
const
isRoot
=
require
(
'
is-root
'
);
import
ProgressBar
from
'
./utils/cli/progressbar
'
;
import
initdb
from
'
./db/mongodb
'
;
import
MachineInfo
from
'
./utils/machineInfo
'
;
import
DependencyChecker
from
'
./utils/dependencyChecker
'
;
// Init babel
...
...
@@ -158,14 +159,7 @@ async function init(): Promise<State> {
envLogger
.
warn
(
'
Do not use for production purpose
'
);
}
// Get machine info
const
totalmem
=
(
os
.
totalmem
()
/
1024
/
1024
/
1024
).
toFixed
(
1
);
const
freemem
=
(
os
.
freemem
()
/
1024
/
1024
/
1024
).
toFixed
(
1
);
let
machineLogger
=
new
Logger
(
'
Machine
'
);
machineLogger
.
info
(
os
.
hostname
());
machineLogger
.
info
(
`CPU:
${
os
.
cpus
().
length
}
core`
);
machineLogger
.
info
(
`MEM:
${
totalmem
}
GB (available:
${
freemem
}
GB)`
);
MachineInfo
.
show
();
new
DependencyChecker
().
checkAll
();
let
configLogger
=
new
Logger
(
'
Config
'
);
...
...
This diff is collapsed.
Click to expand it.
src/utils/machineInfo.ts
0 → 100644
+
13
−
0
View file @
7e4091c7
import
*
as
os
from
'
os
'
;
import
Logger
from
'
./logger
'
;
export
default
class
MachineInfo
{
static
show
()
{
const
totalmem
=
(
os
.
totalmem
()
/
1024
/
1024
/
1024
).
toFixed
(
1
);
const
freemem
=
(
os
.
freemem
()
/
1024
/
1024
/
1024
).
toFixed
(
1
);
let
logger
=
new
Logger
(
'
Machine
'
);
logger
.
info
(
os
.
hostname
());
logger
.
info
(
`CPU:
${
os
.
cpus
().
length
}
core`
);
logger
.
info
(
`MEM:
${
totalmem
}
GB (available:
${
freemem
}
GB)`
);
}
}
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