RCABench SDK
Project description
RCABench SDK
A Python SDK for interacting with RCABench services.
Installation
From PyPI
pip install rcabench
From Source
# Clone the repository
git clone https://github.com/your-username/rcabench.git
cd rcabench/sdk/python
# Install the package
pip install -e .
Building the Package
To build the package for distribution:
# Install build dependencies
pip install build
# Build the package
python -m build
# This will create distribution files in the dist/ directory
Usage
from rcabench import RCABenchSDK
# Initialize the SDK
sdk = RCABenchSDK("http://localhost:8082")
# Get available algorithms
algorithms = sdk.algorithm.list()
print(algorithms)
# Submit an injection task
injection_payload = [{
"duration": 1,
"faultType": 5,
"injectNamespace": "ts",
"injectPod": "ts-preserve-service",
"spec": {"CPULoad": 1, "CPUWorker": 3},
"benchmark": "clickhouse",
}]
response = sdk.injection.execute(injection_payload)
print(response)
# Run an algorithm
algorithm_payload = [{
"benchmark": "clickhouse",
"algorithm": "e-diagnose",
"dataset": "dataset-name",
}]
response = sdk.algorithm.execute(algorithm_payload)
print(response)
API Reference
The SDK provides the following main components:
RCABenchSDK: The main entry point for the SDKalgorithm: For interacting with algorithm endpointsevaluation: For interacting with evaluation endpointsinjection: For interacting with injection endpoints
For detailed API documentation, please refer to the code docstrings.
Requirements
- Python 3.8 or higher
requestsandaiohttplibraries
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
rcabench-0.1.4.tar.gz
(6.1 kB
view details)
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 rcabench-0.1.4.tar.gz.
File metadata
- Download URL: rcabench-0.1.4.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96a4ce238d19fda460a4bf3f8978fa10ead8a267c9f4fd44cf6b196bc74e6194
|
|
| MD5 |
7c2a4a534fab1666e6c5fea836c22698
|
|
| BLAKE2b-256 |
cee1965d2b040b1de0b86b60028a49be82f895167ee557ef990b5b30a72608bb
|
File details
Details for the file rcabench-0.1.4-py3-none-any.whl.
File metadata
- Download URL: rcabench-0.1.4-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6591c067e918baa9eb0134b11df61d242b4d61b5d6e705da5786620e1cec7a49
|
|
| MD5 |
729c2ce560f4b6581a580f3390bc520e
|
|
| BLAKE2b-256 |
685729f52a21efcb86c106f4191417bf477531fbe6bc530a3c6bffa8187391aa
|