aboutsummaryrefslogtreecommitdiff
path: root/slides/2018-lwm/img/self-monitor.tex
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@rgdd.se>2024-10-15 15:35:20 +0200
committerRasmus Dahlberg <rasmus@rgdd.se>2024-10-15 15:35:45 +0200
commit76bae02bcd7d6b3ec9eea428e5e95da184a8dbfb (patch)
tree410ab71c78c99d35aecd46733958a5699cdf5204 /slides/2018-lwm/img/self-monitor.tex
parent883a67439aff566962adafeb0385c6ae972073a3 (diff)
Rescue some slides from old private mono repos
Diffstat (limited to 'slides/2018-lwm/img/self-monitor.tex')
-rw-r--r--slides/2018-lwm/img/self-monitor.tex34
1 files changed, 34 insertions, 0 deletions
diff --git a/slides/2018-lwm/img/self-monitor.tex b/slides/2018-lwm/img/self-monitor.tex
new file mode 100644
index 0000000..0896990
--- /dev/null
+++ b/slides/2018-lwm/img/self-monitor.tex
@@ -0,0 +1,34 @@
+\begin{tikzpicture}[
+ -latex,
+ entity/.style = {
+ draw = gray!30,
+ thick,
+ rounded rectangle,
+ fill = white,
+ minimum width = 2cm,
+ font = \fontsize{8}{8}\selectfont,
+ text = white,
+ },
+ ls/.style = {
+ draw=none,
+ font=\fontsize{6}{6}\selectfont,
+ },
+]
+ \node[entity,fill=darkGreen](domain) at (0,0) {Subject};
+ \node[entity,fill=darkRed](log) at (0,-3) {Log};
+ \path[draw,thick,-latex]
+ (domain.south west) --
+ node[ls,sloped,below]{Any new certs?}
+ (log.north west);
+ \path[draw,thick,-latex]
+ (log.north east) --
+ node[ls,sloped,below]{List of certs}
+ (domain.south east);
+ \path[draw,thick,-latex]
+ (domain.north) |-
+ ($ (domain.west) + (domain.north) + (domain) + (-0.25, 0.25) $)
+ node[ls,above,pos=0.75]{
+ All ok?
+ } |-
+ (domain.west);
+\end{tikzpicture}