Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dockerfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Picasoft
Technique
Dockerfiles
Merge requests
!65
Add alerting
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add alerting
vmalert
into
master
Overview
0
Commits
22
Pipelines
0
Changes
11
Merged
Quentin Duchemin
requested to merge
vmalert
into
master
3 years ago
Overview
0
Commits
22
Pipelines
0
Changes
11
Expand
Add Blackbox exporter to easily export metrics about health of web services and DNS servers
Add vmalert to throw alerts when something is wrong, with rich metadata (description, link to Grafana dashboard, criticity, etc)
Add alertmanager to process throwed alerts and send them to Mattermost with nice formatting
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
e0db87b3
22 commits,
3 years ago
11 files
+
526
−
24
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
pica-metrologie/alertmanager/Dockerfile
0 → 100644
+
13
−
0
Options
ARG
VERSION=v0.22.2
FROM
prom/alertmanager:${VERSION}
COPY
./entrypoint.sh /entrypoint.sh
COPY
./templates.tpl /config/templates.tpl
# Initial image uses user nobody which cannot chmod nor sed
USER
root
RUN
chmod
+x /entrypoint.sh
ENTRYPOINT
[ "/entrypoint.sh" ]
CMD
[ "--config.file=/etc/amtool/config.yml", "--storage.path=/alertmanager" ]
Loading