Application heartbeats
Project description
Python Application Heartbeats
A Python application-level heartbeats interface.
Installing
The apphb
package is published in the Python Package Index and installable with pip:
pip install apphb
and through Conda Forge:
conda install energymon
To install from source:
pip install .
Usage
The core component is the Heartbeat
class.
The user defines a window period (window_size
) that specifies a sliding window length over which performance is computed.
Users may optionally specify other fields to compute sums and rates for.
For example:
total_iters = 10
window_size = 2
hbt = Heartbeat(window_size)
for tag in range(total_iters):
start_time = time.monotonic()
application_kernel()
end_time = time.monotonic()
hbt.heartbeat(tag, (end_time - start_time,))
print(str(tag) + ': Instant performance: ' + str(hbt.get_instant_rate()))
print(str(tag) + ': Window performance: ' + str(hbt.get_window_rate()))
print('Global performance: ' + str(hbt.get_global_rate()))
See the examples
directory for more detailed use cases, including specifying custom fields.
Project Source
Find this and related project sources at the libheartbeats organization on GitHub.
This project originates at: https://github.com/libheartbeats/apphb-python
Bug reports and pull requests for bug fixes and enhancements are welcome.
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
File details
Details for the file apphb-0.1.1.tar.gz
.
File metadata
- Download URL: apphb-0.1.1.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a064086017a79b4c90d57b3105bef5a9436098080e14324d7fdf863a43245081 |
|
MD5 | 06333eca5f1483b0cb485b4af286f5c7 |
|
BLAKE2b-256 | 6342f014784571d26c5e1c3e5f2a2b6e1934236cb96a6749c3284f558f3202df |
File details
Details for the file apphb-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: apphb-0.1.1-py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f507449acbb4f817197016b8301df0faf4f7dde31d47500d5d33cc7132421f1 |
|
MD5 | 887c437d303a14d31f8939ad1d794f86 |
|
BLAKE2b-256 | 6167999bb52e0005a3b40bff36a7442fb500ed556fcf9d1fbe6e2b111f3945c6 |