-
-
Save surinkim/7880b825b70febceba7017be32364b72 to your computer and use it in GitHub Desktop.
usecase for telegraf/kafka
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
@startuml | |
package Consumer { | |
actor Telegraf as t | |
} | |
package Kafka { | |
card Zookeeper as z | |
card "Broker 1" as k1 | |
card "Broker 2" as k2 | |
card "Broker 3" as k3 | |
} | |
package Kafka-UI { | |
card "Kafka UI" as ku | |
} | |
t --> k1 | |
z <--> k1 | |
z <--> k2 | |
z <--> k3 | |
ku --> Kafka | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment