-
Notifications
You must be signed in to change notification settings - Fork 108
Miscellaneous doc cleanup #3564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
dbutenhof
merged 2 commits into
distributed-system-analysis:main
from
dbutenhof:whatsupdoc
Oct 25, 2023
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.