Skip to content

Instantly share code, notes, and snippets.

@glassonion1
Last active December 26, 2020 06:24
Show Gist options
  • Save glassonion1/e90965c86373fd61d8a215a243ca92f6 to your computer and use it in GitHub Desktop.
Save glassonion1/e90965c86373fd61d8a215a243ca92f6 to your computer and use it in GitHub Desktop.
@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
@glassonion1
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment