0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PlantUML 備忘

Last updated at Posted at 2021-08-07

シーケンス図

ループ

@startuml
loop 2 minutes
  Prometheus -> Exporter: メトリクス取得
end
@enduml

配置図

入れ子をまたいで矢印でつなぐ

@startuml
actor クライアント
node ノード {
  component Docker {
    agent NGINX as nginx
  }
}
クライアント -> nginx: HTTPリクエスト
@enduml

配置

参考:https://zenn.dev/kitabatake/articles/plantuml-layout

-で結ぶ

横並びになる。

@startuml
agent A
agent B
A -> B
@enduml

--で結ぶ

縦並びになる。

@startuml
agent A
agent B
A --> B
@enduml
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?