pax_global_header00006660000000000000000000000064142122102550014504gustar00rootroot0000000000000052 comment=23ab2f38443bd6f3bf9820008099858119e387fd prometheus-xmpp-alerts-0.5.3/000077500000000000000000000000001421221025500161565ustar00rootroot00000000000000prometheus-xmpp-alerts-0.5.3/.github/000077500000000000000000000000001421221025500175165ustar00rootroot00000000000000prometheus-xmpp-alerts-0.5.3/.github/workflows/000077500000000000000000000000001421221025500215535ustar00rootroot00000000000000prometheus-xmpp-alerts-0.5.3/.github/workflows/container.yml000066400000000000000000000021471421221025500242640ustar00rootroot00000000000000name: Create and publish a Docker image on: release: types: [created] env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} jobs: build-and-push-image: runs-on: ubuntu-latest permissions: contents: read packages: write steps: - name: Checkout repository uses: actions/checkout@v2 - name: Log in to the Container registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}{% raw %} - name: Build and push Docker image uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc with: context: . push: true tags: {% raw %}${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} prometheus-xmpp-alerts-0.5.3/.github/workflows/pythonpackage.yml000066400000000000000000000016431421221025500251370ustar00rootroot00000000000000name: Python package on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.7, 3.8, 3.9] fail-fast: false steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pyasn1 python setup.py develop - name: Style checks run: | python -m pip install flake8 python -m flake8 - name: Typing checks run: | pip install -U mypy types-pytz python -m mypy prometheus_xmpp - name: Test suite run run: | python -m unittest prometheus_xmpp.tests.test_suite env: PYTHONHASHSEED: random prometheus-xmpp-alerts-0.5.3/.github/workflows/pythonpublish.yml000066400000000000000000000014621421221025500252110ustar00rootroot00000000000000name: Upload Python Package on: release: types: [created] jobs: deploy: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ['3.x'] steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | sudo apt install libidn2-dev python3-slixmpp python -m pip install --upgrade pip pip install setuptools wheel twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel twine upload dist/* prometheus-xmpp-alerts-0.5.3/.gitignore000066400000000000000000000000721421221025500201450ustar00rootroot00000000000000prometheus_xmpp_alerts.egg-info .eggs *~ __pycache__ dist prometheus-xmpp-alerts-0.5.3/Dockerfile000066400000000000000000000012151421221025500201470ustar00rootroot00000000000000FROM python:3.7-alpine AS build-env RUN apk add --no-cache \ gcc \ musl-dev \ libffi-dev RUN pip install \ slixmpp \ aiohttp \ pyyaml \ prometheus_client FROM python:3.7-alpine LABEL maintainer="jelmer@jelmer.uk" COPY --from=build-env /usr/local/lib/python3.7/site-packages/ /usr/local/lib/python3.7/site-packages/ RUN apk add --no-cache alertmanager ADD ./prometheus-xmpp-alerts /prometheus-xmpp-alerts ADD ./prometheus_xmpp /prometheus_xmpp RUN sed -i 's/yaml.load(f)/yaml.load(f, Loader=yaml.FullLoader)/' /prometheus-xmpp-alerts EXPOSE 9199 CMD ["/usr/local/bin/python", "/prometheus-xmpp-alerts", "--config", "/config.yaml"] prometheus-xmpp-alerts-0.5.3/LICENSE000066400000000000000000000261361421221025500171730ustar00rootroot00000000000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. prometheus-xmpp-alerts-0.5.3/Makefile000066400000000000000000000004501421221025500176150ustar00rootroot00000000000000PYTHON = python3 all: check flake8 check: $(PYTHON) -m unittest prometheus_xmpp.tests.test_suite flake8: flake8 .PHONY: all flake8 check docker: docker build -t jvernooij/prometheus-xmpp-alerts -t ghcr.io/jelmer/prometheus-xmpp-alerts . docker push ghcr.io/jelmer/prometheus-xmpp-alerts prometheus-xmpp-alerts-0.5.3/README.md000066400000000000000000000034271421221025500174430ustar00rootroot00000000000000prometheus-xmpp-alerts ====================== A simple web hook that forwards prometheus alerts over XMPP. Usage ----- # To use, configure a web hook in alertmanager. E.g.: ```yaml receivers: - name: 'jelmer-pager' webhook_configs: - url: 'http://192.168.2.1:9199/alert' ``` Edit the configuration file (defaults to ``/etc/prometheus/xmpp-alerts.yml``): ```yaml jid: 'alertmanager@example.com' password: 'PASSWORD' to_jid: 'jelmer@example.com' listen_address: '192.168.2.1' listen_port: 9199 format: 'short' ``` And run the web hook:: ```shell $ python3 prometheus-xmpp-alerts ``` If you have [amtool](https://github.com/prometheus/alertmanager#amtool) set up, then you can also allow ``to_jid`` to see existing alerts and manage silences. Docker file ----------- You can build your own docker images using the Dockerfile in this directory, or use ``ghcr.io/jelmer/prometheus-xmpp-alerts``. Provide your configuration in ``/config.yaml``. Password Command ---------------- Instead of hardcoding your password, you can also use a `password_command`. The command should write the password to stdout. Only the first line (stripped of whitespaces) is being used as password. Message Format -------------- If you don't set the message format option, the `short` format will be used. * **short** > FIRING, 2019-05-17T18:48:18, Alert Summary * **full** > **[FIRING] Alert Summary** (groupLabelValue1 groupLabelValue2) > This is the description of the test alert. > **label1**: value1 > **label2**: value2 > **label3**: value3 Testing ------- The web hook can be accessed on three paths: * ``/alert``: used by Prometheus to deliver alerts, expects POST requests with JSON body * ``/test``: delivers a test message * ``/metrics``: exposes statistics about number of alerts received prometheus-xmpp-alerts-0.5.3/prometheus-xmpp-alerts000077500000000000000000000175741421221025500225670ustar00rootroot00000000000000#!/usr/bin/python3 # Simple HTTP web server that forwards prometheus alerts over XMPP. # # To use, configure a web hook in alertmanager. E.g.: # # receivers: # - name: 'jelmer-pager' # webhook_configs: # - url: 'http://192.168.2.1:9199/alert' # # Edit xmpp-alerts.yml.example, then run: # $ python3 prometheus-xmpp-alerts --config=xmpp-alerts.yml.example import subprocess import argparse import json import logging import shlex import socket import sys import slixmpp import yaml from aiohttp import web from prometheus_client import ( Counter, Gauge, generate_latest, CONTENT_TYPE_LATEST, ) from prometheus_xmpp import ( create_message_short, create_message_full, run_amtool, ) DEFAULT_CONF_PATH = '/etc/prometheus/xmpp-alerts.yml' alert_counter = Counter('alert_count', 'Total number of alerts delivered') test_counter = Counter('test_count', 'Total number of test alerts delivered') xmpp_message_counter = Counter( 'xmpp_message_count', 'Total number of XMPP messages received.') online_gauge = Gauge( 'xmpp_online', 'Connected to XMPP server.') last_alert_message_succeeded_gauge = Gauge( 'last_alert_message_succeeded', 'Last alert message succeeded.') def read_password_from_command(cmd): """ Read the first line of the output of `cmd` and return the stripped string. Args: cmd: The command that should be executed. """ out = subprocess.check_output(cmd, shell=True).decode('utf-8') lines = out.split('\n') first_line = lines[0] return first_line.strip() class XmppApp(slixmpp.ClientXMPP): def __init__(self, jid, password_cb, amtool_allowed=None, alertmanager_url=None): password = password_cb() slixmpp.ClientXMPP.__init__(self, jid, password) self._amtool_allowed = amtool_allowed or [] self.alertmanager_url = alertmanager_url self.auto_authorize = True self.add_event_handler("session_start", self.start) self.add_event_handler("message", self.message) self.add_event_handler("disconnected", self.lost) self.add_event_handler("failed_auth", self.failed_auth) self.register_plugin('xep_0030') # Service Discovery self.register_plugin('xep_0004') # Data Forms self.register_plugin('xep_0060') # PubSub self.register_plugin('xep_0199') # XMPP Ping def failed_auth(self, stanza): logging.warning("XMPP Authentication failed: %r", stanza) def start(self, event): """Process the session_start event. Args: event: Event data (empty) """ logging.info("Session started.") self.send_presence(ptype='available', pstatus='Active') self.get_roster() online_gauge.set(1) last_alert_message_succeeded_gauge.set(1) def lost(self, event): online_gauge.set(0) logging.info("Connection lost, exiting.") sys.exit(1) def message(self, msg): """Handle an incoming message. Args: msg: The received message stanza. """ if msg['type'] in ('chat', 'normal'): args = shlex.split(msg['body']) if args == []: response = "No command specified" elif args[0].lower() in ('alert', 'silence'): args[0] = args[0].lower() if msg['from'].bare in self._amtool_allowed: if self.alertmanager_url: args = [ '--alertmanager.url', self.alertmanager_url] + args response = run_amtool(args) else: response = "Unauthorized JID." elif args[0].lower() == 'help': response = "Supported commands: help, alert, silence." else: response = "Unknown command: %s" % args[0].lower() msg.reply(response).send() parser = argparse.ArgumentParser() parser.add_argument('--config', dest='config_path', type=str, default=DEFAULT_CONF_PATH, help='Path to configuration file.') parser.add_argument("-q", "--quiet", help="set logging to ERROR", action="store_const", dest="loglevel", const=logging.ERROR, default=logging.INFO) parser.add_argument("-d", "--debug", help="set logging to DEBUG", action="store_const", dest="loglevel", const=logging.DEBUG, default=logging.INFO) args = parser.parse_args() # Setup logging. logging.basicConfig(level=args.loglevel, format='%(levelname)-8s %(message)s') with open(args.config_path) as f: if getattr(yaml, 'FullLoader', None): config = yaml.load(f, Loader=yaml.FullLoader) else: # Backwards compatibility with older versions of Python config = yaml.load(f) hostname = socket.gethostname() jid = "{}/{}".format(config['jid'], hostname) if config.get('password'): def password_cb(): return config['password'] elif config.get('password_command'): def password_cb(): return read_password_from_command(config['password_command']) else: def password_cb(): return None xmpp_app = XmppApp( jid, password_cb, config.get('amtool_allowed', [config['to_jid']]), config.get('alertmanager_url', None)) async def serve_test(request): to_jid = request.match_info.get('to_jid', config['to_jid']) test_counter.inc() try: xmpp_app.send_message( mto=to_jid, mbody='Test message', mtype='chat') except slixmpp.xmlstream.xmlstream.NotConnectedError as e: logging.warning('Test alert not posted since we are not online: %s', e) return web.Response( body='Did not send message. Not online: %s' % e) else: return web.Response(body='Sent message.') async def serve_alert(request): to_jid = request.match_info.get('to_jid', config['to_jid']) alert_counter.inc() try: alert = await request.json() except json.decoder.JSONDecodeError as e: raise web.HTTPUnprocessableEntity(text=str(e)) try: if 'format' in config and config['format'] == 'full': text = '\n--\n'.join(create_message_full(alert)) else: text = '\n'.join(create_message_short(alert)) try: xmpp_app.send_message( mto=to_jid, mbody=text, mtype='chat') except slixmpp.xmlstream.xmlstream.NotConnectedError as e: logging.warning('Alert posted but we are not online: %s', e) last_alert_message_succeeded_gauge.set(0) return web.Response( body='Did not send message. Not online: %s' % e) else: last_alert_message_succeeded_gauge.set(1) return web.Response(body='Sent message') except Exception: last_alert_message_succeeded_gauge.set(0) raise async def serve_metrics(request): resp = web.Response(body=generate_latest()) resp.content_type = CONTENT_TYPE_LATEST return resp async def serve_health(request): if not xmpp_app.authenticated: return web.Response(status=500, text='not authenticated to server') return web.Response(body=b'ok') async def serve_root(request): return web.Response(body='See /test, /health, /alert or /metrics') web_app = web.Application() web_app.add_routes([ web.get('/', serve_root), web.get('/test', serve_test), web.get('/test/{to_jid}', serve_test), web.post('/test', serve_test), web.post('/test/{to_jid}', serve_test), web.get('/alert', serve_alert), web.get('/alert/{to_jid}', serve_alert), web.post('/alert', serve_alert), web.post('/alert/{to_jid}', serve_alert), web.get('/metrics', serve_metrics), web.get('/health', serve_health), ]) xmpp_app.connect() web.run_app( web_app, host=config['listen_address'], port=config['listen_port'], loop=xmpp_app.loop) prometheus-xmpp-alerts-0.5.3/prometheus-xmpp-alerts.service000066400000000000000000000005441421221025500242100ustar00rootroot00000000000000[Unit] Description=Prometheus XMPP Alerts Documentation=https://jelmer.uk/code/prometheus-xmpp-alerts Wants=network-online.target After=network-online.target [Service] Restart=always User=prometheus Group=prometheus StandardError=syslog Restart=on-failure KillSignal=SIGQUIT ExecStart=/usr/bin/prometheus-xmpp-alerts [Install] WantedBy=multi-user.target prometheus-xmpp-alerts-0.5.3/prometheus_xmpp/000077500000000000000000000000001421221025500214155ustar00rootroot00000000000000prometheus-xmpp-alerts-0.5.3/prometheus_xmpp/__init__.py000066400000000000000000000045661421221025500235410ustar00rootroot00000000000000#!/usr/bin/python3 # Simple HTTP web server that forwards prometheus alerts over XMPP. # # To use, configure a web hook in alertmanager. E.g.: # # receivers: # - name: 'jelmer-pager' # webhook_configs: # - url: 'http://192.168.2.1:9199/alert' # # Edit xmpp-alerts.yml.example, then run: # $ python3 prometheus-xmpp-alerts --config=xmpp-alerts.yml.example import re from datetime import datetime import subprocess __version__ = (0, 5, 2) version_string = '.'.join(map(str, __version__)) def parse_timestring(ts): # strptime doesn't understand nanoseconds, so discard the last three digits ts = re.sub(r'\.([0-9]{6})([0-9]*)([^0-9])', r'.\1\3', ts) return datetime.strptime(ts, '%Y-%m-%dT%H:%M:%S.%f%z') def create_message_short(message): """Create the short form message to deliver.""" for alert in message['alerts']: try: summary = alert['annotations']['summary'] except KeyError: summary = alert['labels']['alertname'] yield '%s, %s, %s' % ( alert['status'].upper(), parse_timestring(alert['startsAt']).isoformat(timespec='seconds'), summary) def create_message_full(message): """Create the long form message to deliver.""" group_labels = '' if 'groupLabels' in message: group_labels = ' ({})'.format(' '.join( value for key, value in message['groupLabels'].items())) for alert in message['alerts']: description = '' if 'description' in alert['annotations']: description = '\n{}'.format(alert['annotations']['description']) labels = '' if 'labels' in alert: for label, value in alert['labels'].items(): labels += '\n*{}:* {}'.format(label, value) try: summary = alert['annotations']['summary'] except KeyError: summary = alert['labels']['alertname'] yield '*[{}] {}*{}{}{}'.format( alert['status'].upper(), summary, group_labels, description, labels) def run_amtool(args): """Run amtool with the specified arguments.""" # TODO(jelmer): Support setting the current user, e.g. for silence # ownership. ret = subprocess.run( ["amtool"] + args, shell=False, universal_newlines=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) return ret.stdout prometheus-xmpp-alerts-0.5.3/prometheus_xmpp/tests/000077500000000000000000000000001421221025500225575ustar00rootroot00000000000000prometheus-xmpp-alerts-0.5.3/prometheus_xmpp/tests/__init__.py000066400000000000000000000050641421221025500246750ustar00rootroot00000000000000# __init__.py -- The tests for prometheus_xmpp # Copyright (C) 2018 Jelmer Vernooij # from datetime import datetime import pytz import unittest from prometheus_xmpp import \ create_message_short, create_message_full, parse_timestring class CreateMessageTests(unittest.TestCase): message = { "version": "4", "groupKey": "test", "status": "firing", "receiver": "xmpp", "groupLabels": { "groupLabel1": "groupLabelValue1", "groupLabel2": "groupLabelValue2" }, "commonLabels": { "commonLabel1": "commonLabelValue1", "commonLabel2": "commonLabelValue2" }, "commonAnnotations": { "commonAnnotation1": "commonAnnotationValue1", "commonAnnotation2": "commonAnnotationValue2" }, "externalURL": "https://alertmanager.example.com", "alerts": [ { "status": "firing", "labels": { "test": "true", "severity": "test" }, "annotations": { "summary": "Test Alert", "description": "This is just a test alert." }, "startsAt": "2019-04-12T23:20:50.123456789Z", "endsAt": "2019-04-12T23:20:50.123456789Z", "generatorURL": "curl" } ] } def test_create_message_short(self): self.assertEqual( ['FIRING, 2019-04-12T23:20:50+00:00, Test Alert'], list(create_message_short(self.message))) def test_create_message_full(self): self.assertEqual( ['*[FIRING] Test Alert* (groupLabelValue1 groupLabelValue2)' + '\nThis is just a test alert.' + '\n*test:* true' + '\n*severity:* test'], list(create_message_full(self.message))) class ParseTimestringTests(unittest.TestCase): def test_parse_with_nanoseconds(self): self.assertEqual( datetime(2019, 4, 27, 5, 33, 35, 739602, pytz.utc), parse_timestring('2019-04-27T05:33:35.739602132Z')) def test_parse_with_microseconds(self): self.assertEqual( datetime(2019, 4, 27, 5, 33, 35, 739602, pytz.utc), parse_timestring('2019-04-27T05:33:35.739602Z')) def test_parse_with_timezone(self): self.assertEqual( datetime(2019, 4, 27, 5, 33, 35, 739602, pytz.utc), parse_timestring('2019-04-27T05:33:35.739602+00:00')) def test_suite(): module_names = ['prometheus_xmpp.tests'] loader = unittest.TestLoader() return loader.loadTestsFromNames(module_names) prometheus-xmpp-alerts-0.5.3/releaser.conf000066400000000000000000000005331421221025500206300ustar00rootroot00000000000000name: "prometheus-xmpp-alerts" timeout_days: 5 tag_name: "v$VERSION" verify_command: "make check" update_version { path: "setup.py" match: "^ version='(.*)'," new_line: " version='$VERSION'," } update_version { path: "prometheus_xmpp/__init__.py" match: "^__version__ = \((.*)\)$" new_line: "__version__ = $TUPLED_VERSION" } prometheus-xmpp-alerts-0.5.3/setup.py000077500000000000000000000026001421221025500176710ustar00rootroot00000000000000#!/usr/bin/python3 # encoding: utf-8 # Setup file for prometheus-xmpp-alerts # Copyright (C) 2016-2018 Jelmer Vernooij from setuptools import setup setup(name='prometheus-xmpp-alerts', author="Jelmer Vernooij", author_email="jelmer@jelmer.uk", url="https://jelmer.uk/code/prometheus-xmpp-alerts", description="Prometheus XMPP Alerts hook", version='0.5.2', license='Apachev2', project_urls={ "Bug Tracker": "https://github.com/jelmer/prometheus-xmpp-alerts/issues", "Repository": "https://www.jelmer.uk/code/prometheus-xmpp-alerts", "GitHub": "https://github.com/jelmer/prometheus-xmpp-alerts", }, keywords="prometheus xmpp jabber", packages=['prometheus_xmpp'], scripts=['prometheus-xmpp-alerts'], classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Operating System :: POSIX', 'Operating System :: Microsoft :: Windows', 'Topic :: Software Development :: Version Control', ], install_requires=[ 'slixmpp', 'aiohttp', 'pytz', 'pyyaml', 'prometheus_client', ], tests_require=['pytz'], ) prometheus-xmpp-alerts-0.5.3/xmpp-alerts.yml.example000066400000000000000000000006601421221025500226110ustar00rootroot00000000000000# Login details for the bot itself jid: 'alertmanager@example.com' password: 'PASSWORD' # (optional) command that produces the password # password_command: 'cat /run/secrets/foo' listen_address: '127.0.0.1' listen_port: 9199 # JID to send alerts to to_jid: 'jelmer@example.com' # List of JIDs that are allowed to query alerts and set silences. Defaults to # to_jid. amtool_allowed: [] # Message format (short, full) format: 'short'