-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an embedded HTTP server to monitor the service
See the "Monitoring" section in : https://fedora-messaging.readthedocs.io/en/develop/user-guide/consuming.html Fixes: #380 Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
- Loading branch information
Showing
22 changed files
with
761 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# This file is part of fedora_messaging. | ||
# Copyright (C) 2018 Red Hat, Inc. | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, write to the Free Software Foundation, Inc., | ||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
||
""" | ||
A Twisted HTTP service to monitor a Fedora Messaging Service. | ||
This module provides a HTTP service that can be used to implement health checks in OpenShift, as | ||
described here: https://docs.openshift.com/container-platform/4.16/applications/application-health.html | ||
The webserver will listen on the port set in the configuration file, and provides two endpoints that | ||
return JSON data: | ||
- `/live` to check when the program is up | ||
- `/ready` to check when the consumer is connected, and get the statistics | ||
""" | ||
|
||
import abc | ||
import json | ||
import typing | ||
|
||
from twisted.application.internet import TCPServer | ||
from twisted.web import resource, server | ||
|
||
|
||
if typing.TYPE_CHECKING: | ||
from .service import FedoraMessagingServiceV2 | ||
|
||
|
||
class FMServiceResource(resource.Resource, metaclass=abc.ABCMeta): | ||
"""An abstract class for service-monitoring endpoints.""" | ||
|
||
def __init__(self, *args, **kwargs): | ||
self._fm_service = kwargs.pop("fm_service") | ||
super().__init__(*args, **kwargs) | ||
|
||
@abc.abstractmethod | ||
def _get_response(self) -> dict: | ||
"""Return the response as a dictionary.""" | ||
raise NotImplementedError | ||
|
||
def render_GET(self, request): | ||
request.setHeader("Content-Type", "application/json ") | ||
return json.dumps(self._get_response()).encode("utf-8") + b"\n" | ||
|
||
|
||
class Live(FMServiceResource): | ||
"""The `/live` endpoint, returns JSON""" | ||
|
||
isLeaf = True | ||
|
||
def _get_response(self): | ||
return {"status": "OK"} | ||
|
||
|
||
class Ready(FMServiceResource): | ||
"""The `/ready` endpoint | ||
Returns the consumer state and some statistics about messages consumed and produced in | ||
JSON format. | ||
""" | ||
|
||
isLeaf = True | ||
|
||
def _get_response(self): | ||
response = {"consuming": self._fm_service.consuming} | ||
response.update(self._fm_service.stats.as_dict()) | ||
return response | ||
|
||
|
||
class MonitoringSite(server.Site): | ||
"""A subclass of Twisted's site to redefine its name in the logs.""" | ||
|
||
def logPrefix(self): | ||
return "Monitoring HTTP server" | ||
|
||
|
||
def monitor_service( | ||
fm_service: "FedoraMessagingServiceV2", *, address: str, port: int | ||
) -> TCPServer: | ||
"""Add the Twisted service for HTTP-based monitoring to the provided Fedora Messaging Service. | ||
Args: | ||
fm_service: the service to monitor | ||
address: the IP address to listen on | ||
port: the TCP port to listen on | ||
Returns: | ||
The monitoring service | ||
""" | ||
root = resource.Resource() | ||
root.putChild(b"live", Live(fm_service=fm_service)) | ||
root.putChild(b"ready", Ready(fm_service=fm_service)) | ||
site = MonitoringSite(root) | ||
monitor_service = TCPServer(port, site, interface=address) | ||
monitor_service.setName("monitoring") | ||
monitor_service.setServiceParent(fm_service) | ||
return monitor_service |
Oops, something went wrong.