-
Notifications
You must be signed in to change notification settings - Fork 0
Syntax
YarikRevich edited this page Jul 2, 2022
·
12 revisions
ResourceTracker uses YAML configurational language to set a configuration.
You can see an example of YAML configurational language using this link
In order to specify scheduler report frequency there is a specification used for it.
Here is a table with all statements.
| Syntax | Description |
|---|---|
| 20s | Each 20 seconds |
| 20m | Each 20 minutes |
| 20h | Each 20 hours |
| 20d | Each 20 days |
| 20w | Each 20 weeks |
| once | One time |
There are such commands, which can be used from CLI:
| Command | Description | Parameters |
|---|---|---|
| help | Shows all available commands | None |
| start | Starts tracking | project_name(String, optional) |
| stop | Stops tracking for a certain project or all ones | project_name(String, optional) |
| status | Shows status of a certain project or all ones | project_name(String, optional) |
| describe | Describes certain project or request | project_name(String, optional), request_tag(String, optional) |
| logs | Shows logs | limit(Integer, *optional*, default: 5) |
| validate | Validates configurational file | None |