idealista/prom2teams: $ prom2teams [--enablemetrics] [--configpath <config file path>] [--groupalertsby ("name"|"description"|"instance"|"severity"|"summary")] [--logfilepath <log file path>] [--loglevel (DEBUG|INFO|WARNING|ERROR|CRITICAL)] [--templatepath <Jinja2 template file path>] # To show the help message: $ prom2teams --help
Other options to start the service are:
bashexport APP_CONFIG_FILE=<config file path> $ prom2teams
Note: Grouping alerts works since v2.2.1
Every new Prom2teams release, a new Docker image is built in our Dockerhub. We strongly recommend you to use the images with the version tag, though it will be possible to use them without it.
There are two things you need to bear in mind when creating a Prom2teams container:
PROM2TEAMS_CONNECTORPROM2TEAMS_GROUP_ALERTS_BYSo a sample Docker run command would be:
bash$ docker run -it -d -e PROM2TEAMS_GROUP_ALERTS_BY=FIELD_YOU_WANT_TO_GROUP_BY -e PROM2TEAMS_CONNECTOR="CONNECTOR_URL" -p 8089:8089 idealista/prom2teams:VERSION
If you prefer to use your own config file, you just need to provide it as a Docker volume to the container and map it to /opt/prom2teams/config.ini. Sample:
bash$ docker run -it -d -v pathToTheLocalConfigFile:/opt/prom2teams/config.ini -p 8089:8089 idealista/prom2teams:VERSION
To install the chart with the release name my-release run:
bash$ helm install --name my-release /location/of/prom2teams_ROOT/helm
After a few seconds, Prom2Teams should be running.
Tip: List all releases using
helm list, a release is a name used to track a specific deployment
To uninstall/delete the my-release deployment:
Helm 2
bash$ helm delete my-release
Tip: Use helm delete --purge my-release to completely remove the release from Helm internal storage
The command removes all the Kubernetes components associated with the chart and deletes the release.
Helm 3
bash$ helm uninstall my-release
The command removes all the Kubernetes components associated with the chart and deletes the release.
The following table lists the configurable parameters of the Prom2teams chart and their default values.
| Parameter | Description | Default |
|---|---|---|
image.repository | The image repository to pull from | idealista/prom2teams |
image.tag | The image tag to pull | <empty> |
image.pullPolicy | The image pull policy | IfNotPresent |
resources.requests.cpu | CPU requested for being run in a node | 100m |
resources.requests.memory | Memory requested for being run in a node | 128Mi |
resources.limits.cpu | CPU limit | 200m |
resources.limits.memory | Memory limit | 200Mi |
service.type | Service Map (NodePort/ClusterIP) | ClusterIP |
service.port | Service Port | 8089 |
prom2teams.host | IP to bind to | 0.0.0.0 |
prom2teams.port | Port to bind to | 8089 |
prom2teams.connector | Connector URL | <empty> |
prom2teams.connectors | A map where the keys are the connector names and the values are the connector webhook urls | {} |
prom2teams.group_alerts_by | Group_alerts_by field | <empty> |
prom2teams.loglevel | Loglevel | INFO |
prom2teams.templatepath | Custom Template path (files/teams.j2) | /opt/prom2teams/helmconfig/teams.j2 |
prom2teams.config | Config (specific to Helm) | /opt/prom2teams/helmconfig/config.ini |
For production environments you should prefer using a WSGI server. uWSGI dependency is installed for an easy usage. Some ***ations must be taken to use it:
The binary prom2teams_uwsgi launches the app using the uwsgi server. Due to some incompatibilities with wheel
you must install prom2teams using sudo pip install --no-binary :all: prom2teams ([***]
bash$ prom2teams_uwsgi <path to uwsgi ini config>
And uwsgi would look like:
[uwsgi] master = true processes = 5 #socket = 0.0.0.0:8001 #protocol = http socket = /tmp/prom2teams.sock chmod-socket = 777 vacuum = true env = APP_ENVIRONMENT=pro env = APP_CONFIG_FILE=/etc/default/prom2teams.ini
*** not provide chdir property neither module property.
Also you can set the module file, by doing a symbolic link: sudo mkdir -p /usr/local/etc/prom2teams/ && sudo ln -sf /usr/local/lib/python3.7/dist-packages/usr/local/etc/prom2teams/wsgi.py /usr/local/etc/prom2teams/wsgi.py (check your dist-packages folder)
Another approach is to provide yourself the module file module example and the bin uwsgi call uwsgi example
Note: default log level is DEBUG. Messages are redirected to stdout. To enable file log, set the env APP_ENVIRONMENT=(pro|pre)
The config file is an INI file and should have the structure described below:
ini[Microsoft Teams] # At least one connector is required here Connector: <webhook url> AnotherConnector: <webhook url> ... [HTTP Server] Host: <host ip> # default: localhost Port: <host port> # default: 8089 [Log] Level: <loglevel (DEBUG|INFO|WARNING|ERROR|CRITICAL)> # default: DEBUG Path: <log file path> # default: /var/log/prom2teams/prom2teams.log [Template] Path: <Jinja2 template path> # default: app resources default template (./prom2teams/resources/templates/teams.j2) [Group Alerts] Field: <Field to group alerts by> # alerts won't be grouped by default [Labels] Excluded: <Comma separated list of labels to ignore> [Annotations] Excluded: <Comma separated list of annotations to ignore> [Teams Client] RetryEnable: <Enables teams client retry policy> # defaults to false RetryWaitTime: <Wait time between retries> # default: 60 secs MaxPayload: <Teams client payload limit in bytes> # default: 24KB
Note: Grouping alerts works since v2.2.0
The webhook receiver in Prometheus allows configuring a prom2teams server.
The url is formed by the host and port defined in the previous step.
Note: In order to keep compatibility with previous versions, v2.0 keep attending the default connector ("Connector") in the endpoint 0.0.0.0:8089. This will be removed in future versions.
// The prom2teams endpoint to send HTTP POST requests to. url: 0.0.0.0:8089/v2/<Connector1>
Prom2teams uses Flask and, to have the service monitored, we use @rycus66's Prometheus Flask Exporter. This will enable an endpoint in /metrics where you could find interesting metrics to monitor such as number of responses with a certain status. To enable this endpoint, just either:
--enablemetrics or -m flag when launching prom2teams.PROM2TEAMS_PROMETHEUS_METRICS=true.prom2teams provides a default template built with Jinja2 to render messages in Microsoft Teams. This template could be overrided using the 'templatepath' argument ('--templatepath
Some fields are ***ed mandatory when received from Alert Manager. If such a field is not included a default value of 'unknown' is assigned.
All non-mandatory labels not in excluded list are injected in extra_labels key. All non-mandatory annotations not in excluded list are injected in extra_annotations key.
Alertmanager fingerprints are available in the fingerprint key. Fingerprints
are supported by Alertmanager 0.19.0 or greater.
Accessing to <Host>:<Port> (e.g. localhost:8089) in a web browser shows the API v1 documentation.
Accessing to <Host>:<Port>/v2 (e.g. localhost:8089/v2) in a web browser shows the API v2 documentation.
To run the test suite you should type the following:
bash// After cloning prom2teams :) $ pip install -r requirements.txt $ python3 -m unittest discover tests $ cd tests/e2e $ ./test.sh
!Python 3.8.0 !pip 9.0.1
For the versions available, see the tags on this repository.
Additionaly you can see what change in each version in the CHANGELOG.md file.
See also the list of contributors who participated in this project.
!Apache 2.0 License
This project is licensed under the Apache 2.0 license - see the LICENSE file for details.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像服务
在 Docker Desktop 配置镜像
Docker Compose 项目配置
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
MacOS OrbStack 容器配置
在宝塔面板一键配置镜像
Synology 群晖 NAS 配置
飞牛 fnOS 系统配置镜像
极空间 NAS 系统配置服务
爱快 iKuai 路由系统配置
绿联 NAS 系统配置镜像
QNAP 威联通 NAS 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
来自真实用户的反馈,见证轩辕镜像的优质服务