-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #703 from NAICNO/larstha-667-bring-help-now
Fix # 667 - More online help
- Loading branch information
Showing
32 changed files
with
434 additions
and
138 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,14 @@ | ||
Add new data to the database. | ||
|
||
Data are read from stdin, the type and format are implied by operations | ||
-sample, -sysinfo, or -slurm-sacct, one of which must be specified: | ||
|
||
`add -sample` adds `sonar ps` data. The format must be "free CSV", ie CSV | ||
with name=value field syntax and no fixed colums. | ||
|
||
`add -sysinfo` adds `sonar sysinfo` data. The format must be JSON. | ||
|
||
`add -slurm-sacct` adds `sonar slurm` data. The format must be free CSV. | ||
|
||
Mostly this command is only run by the daemon; manual use is for | ||
experiments and bugfixes. |
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
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,6 @@ | ||
Display information about the clusters and overall cluster configuration. | ||
|
||
As this operates on the store and not on cluster data in the store, there is | ||
no -cluster argument for remote runs. | ||
|
||
For per-node data, use "config" and/or "node". |
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
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,7 @@ | ||
Display information about nodes in a cluster configuration. | ||
|
||
The node configuration is time-dependent and is computed from data reported | ||
by the node and additional background information. | ||
|
||
For overall cluster data, use "cluster". Also see "node" for closely | ||
related data. |
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,17 @@ | ||
Display jobs jobs aggregated from process samples. | ||
|
||
A "job" is aggregated from sample streams from one or more processes on one | ||
or more nodes of a cluster. On some clusters, jobs have clearly defined job | ||
numbers (provided by a batch system such as Slurm), while on other clusters, | ||
the job numbers are inferred from the process tree. | ||
|
||
As jobs are built from samples, the job data can be noisy and may sometimes | ||
not represent true behavior. This is especially true for short jobs. | ||
|
||
Note also: | ||
|
||
- A job can be selected by job number, but a time window must be selected | ||
that contains the job or the job will not be found | ||
|
||
- By default, only the jobs for the current user's user name are selected, | ||
specify "-user -" to see all users |
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,8 @@ | ||
Compute aggregate load for hosts and groups of hosts. | ||
|
||
The aggregation can be performed across various timeframes and will be | ||
based on available sample data. | ||
|
||
As not all processes' samples are stored (processes typically have to | ||
be "significant"), the true load can be underreported somewhat, but | ||
probably not by very much. |
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,7 @@ | ||
Display metadata about the sample streams in the database. | ||
|
||
One or more of -files, -times and -bounds must be selected to produce | ||
output. | ||
|
||
Mostly this command is useful for debugging, but -bounds can be used to | ||
detect whether a node is up more cheaply than the "uptime" operation. |
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,8 @@ | ||
Display self-reported information about nodes in a cluster. | ||
|
||
For overall cluster data, use "cluster". Also see "config" for | ||
closely related data. | ||
|
||
The node configuration is time-dependent and is reported by the node | ||
periodically, it will usually only change if the node is upgraded or | ||
components are inserted/removed. |
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,8 @@ | ||
Export sample data in various formats, after optional preprocessing. | ||
|
||
This facility is mostly for debugging and experimentation, as the data | ||
volume is typically significant and the data are not necessarily | ||
postprocessed in a way useful to the consumer. | ||
|
||
The -merge and -clean options perform some postprocessing, but you need to | ||
know what you're looking at to find these useful. |
Oops, something went wrong.