Last active
June 6, 2020 01:37
-
-
Save glassonion1/0aa2b1281acb54c3bace8ffcc87de5a1 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 | |
skinparam componentStyle uml2 | |
node "Redis Pod" { | |
[redis_exporter] | |
database redis | |
} | |
redis <- redis_exporter | |
node Pod { | |
[prometheus] | |
[sidecar] #6A9EFF | |
} | |
folder data <<shared volume>>{ | |
database WAL as wal | |
} | |
cloud "Cloud Monitoring" as mon | |
redis_exporter <-- prometheus: scrape | |
prometheus --> wal: write | |
sidecar --> wal: read | |
sidecar -left-> mon | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://glassonion.hatenablog.com/entry/2020/06/05/182737