Last active
December 26, 2020 06:24
-
-
Save glassonion1/e90965c86373fd61d8a215a243ca92f6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@startuml | |
object ": AccessLog" as access | |
access : severity = "ERROR" | |
access : time = "2020-12-31T20:02:05.123456Z" | |
access : httpRequest = Object | |
object ": ApplicationLog" as app1 | |
app1 : severity = "INFO" | |
app1 : time = "2020-12-31T20:02:03.000456Z" | |
app1 : message = "write info log" | |
object ": ApplicationLog" as app2 | |
app2 : severity = "INFO" | |
app2 : time = "2020-12-31T20:02:04.123456Z" | |
app2 : message = "write info log" | |
object ": ApplicationLog" as app3 | |
app3 : severity = "ERROR" | |
app3 : time = "2020-12-31T20:02:04.999456Z" | |
app3 : message = "write error log" | |
access -- app1 : trace | |
access -- app2 : trace | |
access -- app3 : trace | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://zenn.dev/glassonion1/articles/c58505bf594868