-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Miscellaneous doc cleanup PBENCH-1282 This is just merging a random assortment of minor doc changes I've been accumulating for several months, before we package "Server 1.0".
- Loading branch information
Showing
7 changed files
with
94 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Pbench Agent | ||
|
||
The Pbench Agent manages performance experiments and collects the data for | ||
analysis. The Agent CLI controls the execution of predefined synthetic | ||
benchmarks (such as fio and uperf) and allows execution of generic workloads | ||
(via [pbench-user-benchmark](user-guide/man_page.md#pbench-user-benchmark)) | ||
while gathering and managing additional selected performance data | ||
([pbench-register-tool-set](user-guide/man_page.md#pbench-register-tool-set)). | ||
|
||
For more information, see [Getting Started](user-guide/getting_started.md) | ||
and [Man Page](user-guide/man_page.md). |
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 was deleted.
Oops, something went wrong.
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,25 @@ | ||
# Pbench Server API documentation | ||
|
||
The Pbench Server API provides a RESTful HTTPS interface to curated Pbench | ||
performance data for use by the UI dashboard as well as any other web clients. | ||
|
||
The performance results data associated with an experiment is collectively | ||
referred to as a "dataset". The dataset resource is initially defined by the | ||
".tar.xz" tar ball uploaded to the Pbench Server. The server extracts and | ||
creates metadata describing the dataset, and (if appropriate) indexes synthetic | ||
benchmark data in Elasticsearch to support later analysis. | ||
|
||
The [V1 API](V1/README.md) provides access to the original tar ball, the | ||
original performance results file structure within the tarball, Pbench Server | ||
[metadata](metadata.md), and the Elasticsearch indexed data. | ||
|
||
The Pbench Server APIs accept parameters from a variety of sources. See the | ||
individual API documentation for details. | ||
1. Some parameters, especially "resource ids", are embedded in the URI, such as | ||
`/api/v1/datasets/<resource_id>`; | ||
2. Some parameters are passed as query parameters, such as | ||
`/api/v1/datasets?filter=server.benchmark:fio`; | ||
3. For `PUT` and `POST` APIs, some parameters may be passed as a JSON | ||
(`application/json` content type) request payload, such as | ||
`{"metadata": {"dataset.name": "new name"}}` or as an `application/octet-stream` | ||
byte stream, such as uploading a new results tarball file. |
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,5 @@ | ||
# Pbench Server | ||
|
||
The Pbench Server stores performance experiment results data and provides a set | ||
set of [RESTful APIs](API/api.md) to support management and exploration of that | ||
data with access controls. |