# OVOS-utils
collection of simple utilities for use across the mycroft ecosystem
## Install
```bash
pip install ovos_utils
```
## Commandline scripts
### ovos-logs
Small helper tool to quickly navigate the logs, create slices and quickview errors
---------------
- **ovos-logs slice [options]**
**Slice logs of a given time period. Defaults on the last service start (`-s`) until now (`-u`)**
_Different logs can be picked using the `-l` option. All logs will be included if not specified._
_Optionally the directory where the logs are stored (`-p`) and the file where the slices should be dumped (`-f`) can be specified._
_[ex: `ovos-logs slice`]_
<sup>_Slice all logs from service start up until now._</sup>
_[ex: `ovos-logs slice -s 17:05:20 -u 17:05:25`]_
<sup>_Slice all logs from 17:05:20 until 17:05:25._</sup>
<sup>_**no logs in that timeframe in other present logs_</sup>
<img width="1898" alt="Screenshot 2023-12-25 185004" src="https://github.com/emphasize/ovos-utils/assets/25036977/c7918bd6-0e13-46af-8016-55486b9a786e">
_[ex: `ovos-logs slice -s 17:05:20 -u 17:05:25 -l skills`]_
<sup>_Slice skills.log from 17:05:20 until 17:05:25._</sup>
_[ex: `ovos-logs slice -s 17:05:20 -u 17:05:25 -f ~/testslice.log`]_
<sup>_Slice the logs from 17:05:20 until 17:05:25 on all log files and dump the slices in the file ~/testslice.log (default: `~/slice_<timestamp>.log`)._</sup>
<img width="1246" alt="Screenshot 2023-12-25 190732" src="https://github.com/emphasize/ovos-utils/assets/25036977/dda99d8a-2739-4872-b81a-f44902b43d7d">
--------------
- **ovos-logs list [-e|-w|-d|-x] [options]**
**List logs by severity (error/warning/debug/exception). A log level has to be specified - more than one can be listed**
_A start and end date can be specified using the `-s` and `-u` options. Defaults to the last service start until now._
_Different logs can be picked using the `-l` option. All logs will be included if not specified._
_Optionally, the directory where the logs are stored (`-p`) and the file where the slices should be dumped (`-f`) can be passed as arguments._
_[ex: `ovos-logs list -x`]_
<sup>_List the logs with level EXCEPTION (plus tracebacks) from the last service start until now._</sup>
<img width="992" alt="Screenshot 2023-12-25 184321" src="https://github.com/emphasize/ovos-utils/assets/25036977/da8be23a-4268-4647-8dd3-32c1a889440c">
_[ex: `ovos-logs list -w -e -s 20-12-2023 -l bus -l skills`]_
<sup>_List the logs with level WARNING and ERROR from the 20th of December 2023 until now from the logs bus.log and skills.log._</sup>
<img width="1898" alt="Screenshot 2023-12-25 173739" src="https://github.com/emphasize/ovos-utils/assets/25036977/c5703195-4393-4989-ae40-b37638438c92">
---------------------
- **ovos-logs reduce [options]**
**Downsize logs to a given size (in bytes) or remove entries before a given date.**
_Different logs can be included using the `-l` option. If not specified, all logs will be included._
_Optionally the directory where the logs are stored (`-p`) can be specified._
_[ex: `ovos-logs reduce`]_
<sup>_Downsize all logs to 0 bytes_</sup>
_[ex: `ovos-logs reduce -s 1000000`]_
<sup>_Downsize all logs to ~1MB (latest logs)_</sup>
_[ex: `ovos-logs reduce -d "1-12-2023 17:00"`]_
<sup>_Downsize all logs to entries after the specified date/time_</sup>
_[ex: `ovos-logs reduce -s 1000000 -l skills -l bus`]_
<sup>_Downsize skills.log and bus.log to ~1MB (latest logs)_</sup>
---------------------
- **ovos-logs show -l [servicelog]**
**Show logs**
_[ex: `ovos-logs show -l bus`]_
<sup>_Show the logs from bus.log._</sup>
_[ex: wrong servicelog]_
<sup>_**logs shown depending on the logs present in the folder_</sup>
Raw data
{
"_id": null,
"home_page": "https://github.com/OpenVoiceOS/ovos_utils",
"name": "ovos-utils",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "jarbasAI",
"author_email": "jarbas@openvoiceos.com",
"download_url": "https://files.pythonhosted.org/packages/27/aa/cd408eced1aa4aa20a0bfe1e88b883e86749ea72ba215e7f5bef2c596abe/ovos_utils-0.3.7.tar.gz",
"platform": null,
"description": "# OVOS-utils\n\ncollection of simple utilities for use across the mycroft ecosystem\n\n## Install\n\n```bash\npip install ovos_utils\n```\n\n## Commandline scripts\n### ovos-logs\n Small helper tool to quickly navigate the logs, create slices and quickview errors \n\n---------------\n- **ovos-logs slice [options]**\n\n **Slice logs of a given time period. Defaults on the last service start (`-s`) until now (`-u`)**\n\n _Different logs can be picked using the `-l` option. All logs will be included if not specified._ \n _Optionally the directory where the logs are stored (`-p`) and the file where the slices should be dumped (`-f`) can be specified._\n\n\n _[ex: `ovos-logs slice`]_ \n <sup>_Slice all logs from service start up until now._</sup>\n\n _[ex: `ovos-logs slice -s 17:05:20 -u 17:05:25`]_ \n <sup>_Slice all logs from 17:05:20 until 17:05:25._</sup> \n <sup>_**no logs in that timeframe in other present logs_</sup>\n <img width=\"1898\" alt=\"Screenshot 2023-12-25 185004\" src=\"https://github.com/emphasize/ovos-utils/assets/25036977/c7918bd6-0e13-46af-8016-55486b9a786e\"> \n\n _[ex: `ovos-logs slice -s 17:05:20 -u 17:05:25 -l skills`]_ \n <sup>_Slice skills.log from 17:05:20 until 17:05:25._</sup>\n\n _[ex: `ovos-logs slice -s 17:05:20 -u 17:05:25 -f ~/testslice.log`]_ \n <sup>_Slice the logs from 17:05:20 until 17:05:25 on all log files and dump the slices in the file ~/testslice.log (default: `~/slice_<timestamp>.log`)._</sup>\n <img width=\"1246\" alt=\"Screenshot 2023-12-25 190732\" src=\"https://github.com/emphasize/ovos-utils/assets/25036977/dda99d8a-2739-4872-b81a-f44902b43d7d\">\n--------------\n\n- **ovos-logs list [-e|-w|-d|-x] [options]**\n\n **List logs by severity (error/warning/debug/exception). A log level has to be specified - more than one can be listed** \n\n _A start and end date can be specified using the `-s` and `-u` options. Defaults to the last service start until now._ \n _Different logs can be picked using the `-l` option. All logs will be included if not specified._ \n _Optionally, the directory where the logs are stored (`-p`) and the file where the slices should be dumped (`-f`) can be passed as arguments._ \n\n _[ex: `ovos-logs list -x`]_ \n <sup>_List the logs with level EXCEPTION (plus tracebacks) from the last service start until now._</sup>\n <img width=\"992\" alt=\"Screenshot 2023-12-25 184321\" src=\"https://github.com/emphasize/ovos-utils/assets/25036977/da8be23a-4268-4647-8dd3-32c1a889440c\">\n\n _[ex: `ovos-logs list -w -e -s 20-12-2023 -l bus -l skills`]_ \n <sup>_List the logs with level WARNING and ERROR from the 20th of December 2023 until now from the logs bus.log and skills.log._</sup>\n <img width=\"1898\" alt=\"Screenshot 2023-12-25 173739\" src=\"https://github.com/emphasize/ovos-utils/assets/25036977/c5703195-4393-4989-ae40-b37638438c92\">\n---------------------\n\n- **ovos-logs reduce [options]**\n\n **Downsize logs to a given size (in bytes) or remove entries before a given date.** \n\n _Different logs can be included using the `-l` option. If not specified, all logs will be included._ \n _Optionally the directory where the logs are stored (`-p`) can be specified._ \n\n _[ex: `ovos-logs reduce`]_ \n <sup>_Downsize all logs to 0 bytes_</sup> \n\n _[ex: `ovos-logs reduce -s 1000000`]_ \n <sup>_Downsize all logs to ~1MB (latest logs)_</sup> \n\n _[ex: `ovos-logs reduce -d \"1-12-2023 17:00\"`]_ \n <sup>_Downsize all logs to entries after the specified date/time_</sup> \n\n _[ex: `ovos-logs reduce -s 1000000 -l skills -l bus`]_ \n <sup>_Downsize skills.log and bus.log to ~1MB (latest logs)_</sup> \n\n---------------------\n\n- **ovos-logs show -l [servicelog]**\n\n **Show logs**\n\n _[ex: `ovos-logs show -l bus`]_ \n <sup>_Show the logs from bus.log._</sup> \n\n _[ex: wrong servicelog]_ \n <sup>_**logs shown depending on the logs present in the folder_</sup>\n\n\n\n",
"bugtrack_url": null,
"license": "Apache",
"summary": "collection of simple utilities for use across the openvoiceos ecosystem",
"version": "0.3.7",
"project_urls": {
"Homepage": "https://github.com/OpenVoiceOS/ovos_utils"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e64e66ba486de3f9f09e513fa844fe71509f7dc70d9673cc25a51d088cb33483",
"md5": "0fbb7dc1f621defdae067adf2a37d43f",
"sha256": "ab83c451b880b267c66c3abec861c25bdf73530109cc3a6c41e37415220bb205"
},
"downloads": -1,
"filename": "ovos_utils-0.3.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0fbb7dc1f621defdae067adf2a37d43f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 71567,
"upload_time": "2024-11-05T04:15:43",
"upload_time_iso_8601": "2024-11-05T04:15:43.823517Z",
"url": "https://files.pythonhosted.org/packages/e6/4e/66ba486de3f9f09e513fa844fe71509f7dc70d9673cc25a51d088cb33483/ovos_utils-0.3.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27aacd408eced1aa4aa20a0bfe1e88b883e86749ea72ba215e7f5bef2c596abe",
"md5": "6bdf6261ccd1b86fd650d752fb0520b1",
"sha256": "a98694d64de894e481fd329fe8457bb731ddce6cc68ef8fbf04f23fa14d60e69"
},
"downloads": -1,
"filename": "ovos_utils-0.3.7.tar.gz",
"has_sig": false,
"md5_digest": "6bdf6261ccd1b86fd650d752fb0520b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64739,
"upload_time": "2024-11-05T04:15:47",
"upload_time_iso_8601": "2024-11-05T04:15:47.113355Z",
"url": "https://files.pythonhosted.org/packages/27/aa/cd408eced1aa4aa20a0bfe1e88b883e86749ea72ba215e7f5bef2c596abe/ovos_utils-0.3.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-05 04:15:47",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "OpenVoiceOS",
"github_project": "ovos_utils",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "ovos-utils"
}