-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e629ed
commit 257d349
Showing
7 changed files
with
87 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package net.shibadogs.prcm.process | ||
|
||
import java.time.LocalDateTime | ||
import java.time.format.DateTimeFormatter | ||
|
||
fun getTime() : String { | ||
val currentDateTime = LocalDateTime.now() | ||
val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss") | ||
val time = currentDateTime.format(formatter) | ||
return time | ||
} | ||
|
||
fun getShortTime() : String { | ||
val currentDateTime = LocalDateTime.now() | ||
val formatter = DateTimeFormatter.ofPattern("HH:mm:ss") | ||
val time = currentDateTime.format(formatter) | ||
return time | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ | |
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/NanumBarunpen.woff') format('woff'); | ||
} | ||
|
||
html { | ||
width: 100%; | ||
height: 100%; | ||
margin: 0; | ||
} | ||
|
||
body { | ||
font-family: 'Nanum-Bold', sans-serif; | ||
margin: 0; | ||
|
@@ -44,7 +50,37 @@ body { | |
position: relative; | ||
} | ||
|
||
#chart-usage-memory { | ||
position: relative; | ||
width: 95%; | ||
height: 300px; | ||
top: 0px; | ||
} | ||
|
||
.node-info .toggle { | ||
position: absolute; | ||
width: 90%; | ||
} | ||
|
||
.node-info .toggle .log { | ||
margin-right: 10px; | ||
position: relative; | ||
width: 90%; | ||
height: auto; | ||
} | ||
|
||
.node-info .toggle .log pre { | ||
position: absolute; | ||
width: 100%; | ||
} | ||
|
||
.node-info .command { | ||
position: relative; | ||
font-size: 15px; | ||
} | ||
|
||
.node-info h2 { | ||
position: relative; | ||
margin-right: 20px; | ||
} | ||
|
||
|
@@ -84,9 +120,6 @@ body { | |
background-color: rgb(66, 155, 71); | ||
} | ||
|
||
.chart-usage-memory { | ||
position: relative; | ||
width: 95%; | ||
height: 300px; | ||
top: 0px; | ||
} | ||
.green {} | ||
|
||
.red {} |