💾 Archived View for jacksonchen666.com › posts › 2023-07-31 › 18-09-10 › index.gmi captured on 2024-02-05 at 09:46:49. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-11-04)
-=-=-=-=-=-=-
2023-07-31 16:09:10Z (last updated 2023-10-16 08:55:03Z)
This blog post is kind of in response to a blog post by Sindastra titled "How to monitor your servers the easy way". But instead, I decided to document my personal monitoring setup.
blog post by Sindastra titled "How to monitor your servers the easy way"
I use Prometheus, because I didn't have any better ideas than what sourcehut was already doing (which is using Prometheus).
To those who suggest Uptime Kuma: Yes I have used it, but I didn't like the idea of having to run a load of JavaScript just to check some hosts and having the program installed in a weird exotic way, and I wanted to get rid of the required JavaScript to even view the uptime.
So here's what's in my Prometheus config:
The specifics of what I hook up to Prometheus isn't important, it's just "if it supports Prometheus scraping then I'll hook it up to Prometheus". Also includes some exporters like the Node exporter and Blackbox exporter.
For the rule files, most are alerting rules but I have made a couple of recording rules.
Many of the alerting rules are copied from whatever sourcehut has, but only what can also apply to me (so no `soju` alerts).
My alerting rules are:
Now onto Alertmanager. It alerts. Obviously.
If you didn't know, Alertmanager doesn't *create* the alerts. Prometheus creates the alerts. Alertmanager just manages many aspects of the alerts, including grouping and repeat intervals.
My config is roughly as follows:
One unique thing I have with my setup is having plaintext email. HTML email is too fancy, and I now prefer plaintext email, even for my alerts.
The Alertmanager template and Alertmanager email configuration is available as a paste:
https://paste.sr.ht/~jacksonchen666/26ee58537130952bbde027c8c95790a51e4715ea
It's also available in the next 2 sections. Links will be available for skipping around (mainly for screen readers)
The Alertmanager template (put on your filesystem somewhere):
{{ define "__alertmanager" }}Alertmanager{{ end }} {{ define "__alertmanagerURL" }}{{ .ExternalURL }}/#/alerts?receiver={{ .Receiver | urlquery }}{{ end }} {{ define "__subject" }}[{{ .Status | toUpper }}{{ if eq .Status "firing" }}:{{ .Alerts.Firing | len }}{{ end }}] {{ .GroupLabels.SortedPairs.Values | join " " }} {{ if gt (len .CommonLabels) (len .GroupLabels) }}({{ with .CommonLabels.Remove .GroupLabels.Names }}{{ .Values | join " " }}{{ end }}){{ end }}{{ end }} {{ define "__less_subject" }}[{{ .Status | toUpper }}{{ if eq .Status "firing" }}:{{ .Alerts.Firing | len }}{{ end }}] {{ .GroupLabels.SortedPairs.Values | join " " }}{{ end }} {{ define "email.default.subject" }}{{ template "__subject" . }}{{ end }} {{/* is anything before necessary? */}} {{ define "email.plaintext.__text_alert_list" }}{{ range . }}Labels: {{ range .Labels.SortedPairs }}{{ .Name }}="{{ .Value }}" {{ end }}Annotations: {{ range .Annotations.SortedPairs }}{{ .Name }}="{{ .Value }}" {{ end }}Source: {{ .GeneratorURL }} {{ end }} {{ end }} {{ define "email.plaintext" }} {{- template "__subject" . }} {{ .Alerts | len }} alert{{ if gt (len .Alerts) 1 }}s{{ end }} for {{ range .GroupLabels.SortedPairs }}{{ .Name }}="{{ .Value }}" {{ end }} View in {{ template "__alertmanager" . }}: {{ template "__alertmanagerURL" . }} {{ if gt (len .Alerts.Firing) 0 -}} [{{ .Alerts.Firing | len }}] Firing {{ template "email.plaintext.__text_alert_list" .Alerts.Firing }} {{ end }} {{- if gt (len .Alerts.Resolved) 0 -}} [{{ .Alerts.Resolved | len }}] Resolved {{ template "email.plaintext.__text_alert_list" .Alerts.Resolved }} {{ end }} Sent by {{ template "__alertmanager" . }}: {{ .ExternalURL }} {{- end }}
Special config is required for Alertmanager with plaintext emails. Here's an
example (with a made up email address):
templates: - '/PATH/TO/alertmanager-plaintext.tmpl' receivers: - name: 'email' email_configs: - to: 'example@domain.example' html: '' text: '{{ template "email.plaintext" . }}' headers: # custom Subject: '{{ template "__less_subject" . }}'