diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-29 10:03:13 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-29 10:03:13 +0000 |
commit | f70d4dea1cde3e670a4371a528bf411a5f8fc8b1 (patch) | |
tree | c403cca476d6748769bf3cffeab5745751f203f1 | |
parent | 4d0691a8c54404e8a3482d53c755962d5922cd5b (diff) |
automatic import of python-okerrupdate
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-okerrupdate.spec | 468 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 470 insertions, 0 deletions
@@ -0,0 +1 @@ +/okerrupdate-2.0.0.tar.gz diff --git a/python-okerrupdate.spec b/python-okerrupdate.spec new file mode 100644 index 0000000..0e6a5b5 --- /dev/null +++ b/python-okerrupdate.spec @@ -0,0 +1,468 @@ +%global _empty_manifest_terminate_build 0 +Name: python-okerrupdate +Version: 2.0.0 +Release: 1 +Summary: client-side okerr module and utilities +License: MIT +URL: https://github.com/yaroslaff/okerrupdate +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ca/71/cd621538e7227bfd37f09afcdd236877f778397f605860d19b8677ea7919/okerrupdate-2.0.0.tar.gz +BuildArch: noarch + +Requires: python3-psutil +Requires: python3-dotenv +Requires: python3-requests + +%description +# okerrupdate - client-side okerr module and utilities + +## Installation + +```shell +sudo pip3 install okerrupdate +sudo okerrmod --init # enable few basic modules, create /etc/cron.d/ job, create okerrupdate config template +sudo vim /etc/okerr/okerrupdate +``` + +and modify okerrupdate file: +~~~ +# Stub for okerrmod +PREFIX=braconnier: +OKERR_TEXTID= +OKERR_SECRET= +OKERR_URL= +OKERR_DIRECT=0 + +OKERR_MOD_AVAIL= +~~~ +or provide values to `okerrmod --init` as option values (e.g. `okerrmod --init --textid MyTextid`). + + +## Basic usage + +### okerrupdate utility + +okerrupdate is small script which updates/creates indicators in okerr project. + +This will create simplest indicator 'myindicator' with all default settings (type 'heartbeat', policy 'Default'). +Indicator will send alert if it will be updated to 'ERR' or if will not be updated for some time +(Default policy period+patience). +```shell +$ okerrupdate myindicator OK +okerr updated (200 OK) myindicator@okerr = OK +``` + +This will create numerical indicator 'temp' with current value 36.6, and policy 'Daily'. Will send alert if not updated +for a day or if value will be over maxlim (37). +```shell +$ okerrupdate -p Daily -m 'numerical|maxlim=37' temp 36.6 +okerr updated (200 OK) temp@okerr = 36.6 +``` + +Project TextID and secret is read from `/etc/okerr/okerrupdate` file or `OKERR_TEXTID` and `OKERR_SECRET` environment +variables. + + +### okerrmod utility +okerrmod is script to perform different local checks (such as free disk space, mysql running, load average, etc.). After initial `okerrmod --init`, few basic check modules +are enabled. + +List all available check modules (`+` - module enabled, `-` - module disabled ): +```shell +$ okerrmod --list ++ backups 0.1 Check freshness for backup files ++ df 0.1 Free disk space +... +``` + +To run enabled checks just run `okerrmod` without any other commands: +```shell +xenon@braconnier:~$ sudo okerrmod +okerr updated (200 OK) braconnier:maxfilesz@okerr = 9077814 +okerr updated (200 OK) braconnier:apache@okerr = 0 +okerr updated (200 OK) braconnier:nonempty@okerr = 0 +okerr updated (200 OK) braconnier:empty@okerr = 0 +... +``` + +To run just one check: +```shell +$ sudo okerrmod --run ok +okerr updated (200 OK) braconnier:ok@okerr = OK +``` + +To enable new check: +```shell +$ sudo okerrmod --enable runstatus +2020/01/17 16:12:30 enable /usr/local/lib/python3.7/dist-packages/okerrupdate/mods-available/runstatus +2020/01/17 16:12:30 make default config file: /etc/okerr/mods-env/runstatus + +``` + +After this, you may want to edit default configuration for this check +```shell +sudo vim /etc/okerr/mods-env/runstatus +``` + +After this, `okerrmod` will run this check. + +To create your own very basic check 'my' create dir `/etc/okerr/mods-available/my` and edit `/etc/okerr/mods-available/my/check`: +```shell +#!/usr/bin/python3 +print("STATUS: OK") +``` +or if you prefer shell (check is any executable file): +```shell +#!/bin/sh +echo STATUS: OK +``` + +Now you can run it manually `okerrmod --run my`, enable `okerrmod --enable my`, make/edit config file for it +`/etc/okerr/mods-env/my`. + +## Using okerrupdate python library +Simplest case: +```python +#!/usr/bin/python +import okerrupdate + +op = okerrupdate.OkerrProject('MyTextID', secret='MySecret') +i = op.indicator('temp', method='numerical|maxlim=37', policy='Daily') +i.update('36.6') +``` + +## Documentation +More info in [okerrupdate documentation](https://okerrupdate.readthedocs.io/). + +# Other okerr resources +- [Okerr main website](https://okerr.com/) +- [Okerr-server source code repository](https://github.com/yaroslaff/okerr-dev/) +- [Okerr client (okerrupdate) repositoty](https://github.com/yaroslaff/okerrupdate) and [okerrupdate documentation](https://okerrupdate.readthedocs.io/) +- [Okerrbench network server benchmark](https://github.com/yaroslaff/okerrbench) +- [Okerr custom status page](https://github.com/yaroslaff/okerr-status) +- [Okerr JS-powered static status page](https://github.com/yaroslaff/okerrstatusjs) +- [Okerr network sensor](https://github.com/yaroslaff/sensor) + + + + + +%package -n python3-okerrupdate +Summary: client-side okerr module and utilities +Provides: python-okerrupdate +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-okerrupdate +# okerrupdate - client-side okerr module and utilities + +## Installation + +```shell +sudo pip3 install okerrupdate +sudo okerrmod --init # enable few basic modules, create /etc/cron.d/ job, create okerrupdate config template +sudo vim /etc/okerr/okerrupdate +``` + +and modify okerrupdate file: +~~~ +# Stub for okerrmod +PREFIX=braconnier: +OKERR_TEXTID= +OKERR_SECRET= +OKERR_URL= +OKERR_DIRECT=0 + +OKERR_MOD_AVAIL= +~~~ +or provide values to `okerrmod --init` as option values (e.g. `okerrmod --init --textid MyTextid`). + + +## Basic usage + +### okerrupdate utility + +okerrupdate is small script which updates/creates indicators in okerr project. + +This will create simplest indicator 'myindicator' with all default settings (type 'heartbeat', policy 'Default'). +Indicator will send alert if it will be updated to 'ERR' or if will not be updated for some time +(Default policy period+patience). +```shell +$ okerrupdate myindicator OK +okerr updated (200 OK) myindicator@okerr = OK +``` + +This will create numerical indicator 'temp' with current value 36.6, and policy 'Daily'. Will send alert if not updated +for a day or if value will be over maxlim (37). +```shell +$ okerrupdate -p Daily -m 'numerical|maxlim=37' temp 36.6 +okerr updated (200 OK) temp@okerr = 36.6 +``` + +Project TextID and secret is read from `/etc/okerr/okerrupdate` file or `OKERR_TEXTID` and `OKERR_SECRET` environment +variables. + + +### okerrmod utility +okerrmod is script to perform different local checks (such as free disk space, mysql running, load average, etc.). After initial `okerrmod --init`, few basic check modules +are enabled. + +List all available check modules (`+` - module enabled, `-` - module disabled ): +```shell +$ okerrmod --list ++ backups 0.1 Check freshness for backup files ++ df 0.1 Free disk space +... +``` + +To run enabled checks just run `okerrmod` without any other commands: +```shell +xenon@braconnier:~$ sudo okerrmod +okerr updated (200 OK) braconnier:maxfilesz@okerr = 9077814 +okerr updated (200 OK) braconnier:apache@okerr = 0 +okerr updated (200 OK) braconnier:nonempty@okerr = 0 +okerr updated (200 OK) braconnier:empty@okerr = 0 +... +``` + +To run just one check: +```shell +$ sudo okerrmod --run ok +okerr updated (200 OK) braconnier:ok@okerr = OK +``` + +To enable new check: +```shell +$ sudo okerrmod --enable runstatus +2020/01/17 16:12:30 enable /usr/local/lib/python3.7/dist-packages/okerrupdate/mods-available/runstatus +2020/01/17 16:12:30 make default config file: /etc/okerr/mods-env/runstatus + +``` + +After this, you may want to edit default configuration for this check +```shell +sudo vim /etc/okerr/mods-env/runstatus +``` + +After this, `okerrmod` will run this check. + +To create your own very basic check 'my' create dir `/etc/okerr/mods-available/my` and edit `/etc/okerr/mods-available/my/check`: +```shell +#!/usr/bin/python3 +print("STATUS: OK") +``` +or if you prefer shell (check is any executable file): +```shell +#!/bin/sh +echo STATUS: OK +``` + +Now you can run it manually `okerrmod --run my`, enable `okerrmod --enable my`, make/edit config file for it +`/etc/okerr/mods-env/my`. + +## Using okerrupdate python library +Simplest case: +```python +#!/usr/bin/python +import okerrupdate + +op = okerrupdate.OkerrProject('MyTextID', secret='MySecret') +i = op.indicator('temp', method='numerical|maxlim=37', policy='Daily') +i.update('36.6') +``` + +## Documentation +More info in [okerrupdate documentation](https://okerrupdate.readthedocs.io/). + +# Other okerr resources +- [Okerr main website](https://okerr.com/) +- [Okerr-server source code repository](https://github.com/yaroslaff/okerr-dev/) +- [Okerr client (okerrupdate) repositoty](https://github.com/yaroslaff/okerrupdate) and [okerrupdate documentation](https://okerrupdate.readthedocs.io/) +- [Okerrbench network server benchmark](https://github.com/yaroslaff/okerrbench) +- [Okerr custom status page](https://github.com/yaroslaff/okerr-status) +- [Okerr JS-powered static status page](https://github.com/yaroslaff/okerrstatusjs) +- [Okerr network sensor](https://github.com/yaroslaff/sensor) + + + + + +%package help +Summary: Development documents and examples for okerrupdate +Provides: python3-okerrupdate-doc +%description help +# okerrupdate - client-side okerr module and utilities + +## Installation + +```shell +sudo pip3 install okerrupdate +sudo okerrmod --init # enable few basic modules, create /etc/cron.d/ job, create okerrupdate config template +sudo vim /etc/okerr/okerrupdate +``` + +and modify okerrupdate file: +~~~ +# Stub for okerrmod +PREFIX=braconnier: +OKERR_TEXTID= +OKERR_SECRET= +OKERR_URL= +OKERR_DIRECT=0 + +OKERR_MOD_AVAIL= +~~~ +or provide values to `okerrmod --init` as option values (e.g. `okerrmod --init --textid MyTextid`). + + +## Basic usage + +### okerrupdate utility + +okerrupdate is small script which updates/creates indicators in okerr project. + +This will create simplest indicator 'myindicator' with all default settings (type 'heartbeat', policy 'Default'). +Indicator will send alert if it will be updated to 'ERR' or if will not be updated for some time +(Default policy period+patience). +```shell +$ okerrupdate myindicator OK +okerr updated (200 OK) myindicator@okerr = OK +``` + +This will create numerical indicator 'temp' with current value 36.6, and policy 'Daily'. Will send alert if not updated +for a day or if value will be over maxlim (37). +```shell +$ okerrupdate -p Daily -m 'numerical|maxlim=37' temp 36.6 +okerr updated (200 OK) temp@okerr = 36.6 +``` + +Project TextID and secret is read from `/etc/okerr/okerrupdate` file or `OKERR_TEXTID` and `OKERR_SECRET` environment +variables. + + +### okerrmod utility +okerrmod is script to perform different local checks (such as free disk space, mysql running, load average, etc.). After initial `okerrmod --init`, few basic check modules +are enabled. + +List all available check modules (`+` - module enabled, `-` - module disabled ): +```shell +$ okerrmod --list ++ backups 0.1 Check freshness for backup files ++ df 0.1 Free disk space +... +``` + +To run enabled checks just run `okerrmod` without any other commands: +```shell +xenon@braconnier:~$ sudo okerrmod +okerr updated (200 OK) braconnier:maxfilesz@okerr = 9077814 +okerr updated (200 OK) braconnier:apache@okerr = 0 +okerr updated (200 OK) braconnier:nonempty@okerr = 0 +okerr updated (200 OK) braconnier:empty@okerr = 0 +... +``` + +To run just one check: +```shell +$ sudo okerrmod --run ok +okerr updated (200 OK) braconnier:ok@okerr = OK +``` + +To enable new check: +```shell +$ sudo okerrmod --enable runstatus +2020/01/17 16:12:30 enable /usr/local/lib/python3.7/dist-packages/okerrupdate/mods-available/runstatus +2020/01/17 16:12:30 make default config file: /etc/okerr/mods-env/runstatus + +``` + +After this, you may want to edit default configuration for this check +```shell +sudo vim /etc/okerr/mods-env/runstatus +``` + +After this, `okerrmod` will run this check. + +To create your own very basic check 'my' create dir `/etc/okerr/mods-available/my` and edit `/etc/okerr/mods-available/my/check`: +```shell +#!/usr/bin/python3 +print("STATUS: OK") +``` +or if you prefer shell (check is any executable file): +```shell +#!/bin/sh +echo STATUS: OK +``` + +Now you can run it manually `okerrmod --run my`, enable `okerrmod --enable my`, make/edit config file for it +`/etc/okerr/mods-env/my`. + +## Using okerrupdate python library +Simplest case: +```python +#!/usr/bin/python +import okerrupdate + +op = okerrupdate.OkerrProject('MyTextID', secret='MySecret') +i = op.indicator('temp', method='numerical|maxlim=37', policy='Daily') +i.update('36.6') +``` + +## Documentation +More info in [okerrupdate documentation](https://okerrupdate.readthedocs.io/). + +# Other okerr resources +- [Okerr main website](https://okerr.com/) +- [Okerr-server source code repository](https://github.com/yaroslaff/okerr-dev/) +- [Okerr client (okerrupdate) repositoty](https://github.com/yaroslaff/okerrupdate) and [okerrupdate documentation](https://okerrupdate.readthedocs.io/) +- [Okerrbench network server benchmark](https://github.com/yaroslaff/okerrbench) +- [Okerr custom status page](https://github.com/yaroslaff/okerr-status) +- [Okerr JS-powered static status page](https://github.com/yaroslaff/okerrstatusjs) +- [Okerr network sensor](https://github.com/yaroslaff/sensor) + + + + + +%prep +%autosetup -n okerrupdate-2.0.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-okerrupdate -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 2.0.0-1 +- Package Spec generated @@ -0,0 +1 @@ +4b549e98e1cdd38e0c8b4cbc2a8964a4 okerrupdate-2.0.0.tar.gz |