OOPS report model and default allocation/[de]serialization.
Project description
Copyright (c) 2011, Canonical Ltd
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 3 only.
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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. GNU Lesser General Public License version 3 (see the file LICENSE).
The oops project provides an in-memory model and basic serialisation, deserialisation and allocation of OOPS reports. An OOPS report is a report about something going wrong in a piece of software… thus, an ‘oops’ :)
This core package is rarely used directly: most programs or services that want to generate OOPS reports will do so via a framework specific adapter (e.g. python-oops_wsgi).
Dependencies
Python 3.8+
Testing Dependencies
subunit (http://pypi.python.org/pypi/python-subunit) (optional)
testtools (http://pypi.python.org/pypi/testtools)
Usage
In Python, OOPS reports are dicts with some well known keys, but extensible simply by adding as many additional keys asneeded. The only constraint is that the resulting dict must be bson serializable : this is the standard to which new serializers are held. Some existing serializers cannot handle this degree of extensability and will ignore additional keys, and/or raise an error on keys they expect but which contain unexpected data.
Typical usage:
When initializing your script/app/server, create a Config object:
>>> from oops import Config >>> config = Config()
New reports will be based on the template report:
>>> config.template {}You can edit the template report (which like all reports is just a dict):
>>> config.template['branch_nick'] = 'mybranch' >>> config.template['appname'] = 'demo'
You can supply a callback (for instance, to capture your process memory usage
when the oops is created, or to override / tweak the information gathered by an earlier callback):
>>> mycallback = lambda report, context: None >>> config.on_create.append(mycallback)
The context parameter is also just dict, and is passed to all the on_create callbacks similarly to the report. This is used to support passing information to the on_create hooks. For instance, the exc_info key is used to pass in information about the exception being logged (if one was caught).
Later on, when something has gone wrong and you want to create an OOPS report:
>>> report = config.create(context=dict(exc_info=sys.exc_info())) >>> report {'appname': 'demo', 'branch_nick': 'mybranch'}And then send it off for storage:
>>> config.publish(report) []
Note that publish returns a list - each item in the list is the id allocated by the particular repository that recieved the report. (Id allocation is up to the repository). Publishers should try to use report[‘id’] for the id, if it is set. This is automatically set to the id returned by the previous publisher.
If publish returns None, then the report was filtered and not passed to any publisher (see the api docs for more information).
>>> 'id' in report False >>> def demo_publish(report): ... return ['id 1'] >>> config.publisher = demo_publish >>> config.publish(report) ['id 1'] >>> report['id'] 'id 1'
The pprint_to_stream publisher will print out reports to a stream after pprinting them. This can be very helpful for interactive use.
The related project oops_datedir_repo contains a local disk based repository which can be used as a publisher.
More coming soon.
Installation
python-oops can be installed into an existing Python environment in the usual way using pip, or it can be installed as a standalone package. To install it as a standalone package, run make to create a suitable virtual environment.
Development
Upstream development takes place at https://launchpad.net/python-oops.
To run this project’s tests, use tox <https://tox.readthedocs.io/en/latest/>.
For example, run:
$ tox
Or:
$ tox -e py38
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file oops-0.1.0.tar.gz.
File metadata
- Download URL: oops-0.1.0.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8270641b704e29dd44bb0bdc9932281eca6ce96d57348a3757c4d6e5dca2a213
|
|
| MD5 |
f2ab64b17492b60f36325ad1fdfca8fb
|
|
| BLAKE2b-256 |
d025eda21fc3411ab66a766ecd6bc9106c7c3c904101723bc0a21986abbaa97e
|
File details
Details for the file oops-0.1.0-py3-none-any.whl.
File metadata
- Download URL: oops-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64dc210c3a7bb99adf84fb169f03b312d34548e634934e51128e8d92f24dd7df
|
|
| MD5 |
a69855473b9ada00b31a5d62ee3af430
|
|
| BLAKE2b-256 |
2cfb47a11ad8c5f49a2e6274502c0f76fdc21c18f3205b50a6048a8404a083c7
|