Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dougeverly/scheduler-commander
Experimental command line interface to a persistent rufus-scheduler process.
https://github.com/dougeverly/scheduler-commander
Last synced: about 1 month ago
JSON representation
Experimental command line interface to a persistent rufus-scheduler process.
- Host: GitHub
- URL: https://github.com/dougeverly/scheduler-commander
- Owner: DougEverly
- Created: 2013-09-03T17:56:51.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-03T18:41:02.000Z (over 11 years ago)
- Last Synced: 2023-03-11T20:48:17.483Z (almost 2 years ago)
- Language: Ruby
- Size: 113 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
scheduler-commander
===================Experimental command line interface to a persistent rufus-scheduler process.
Schedulables can be scheduled, removed, paused, and resumed without starting the main process.
Requirements
============ruby or jruby or anything that rufus-scheduler supports.
Usage
=====Starting the server
-------------------
`ruby run_job_server.rb`Connecting to the control port
------------------------------
`telnet localhost 2000`Help
----```
help
> Valid commands: list, add, delete, pause, resume, help, jobs
```List schedulable jobs
---------------------```
jobs
> +--------+---------------------+
| Work | Displays some text. |
| Looper | Displays some text. |
+--------+---------------------+
```Add instance of a job
---------------------```
add work_job every 5s Work
> Added job work_job
``````
add loop_job in 5s Looper
> Added job loop_job
```List scheduled jobs
-------------------
```
list
> +----------+---------+----------+---------------------------+---------------------------+
| Name | Status | Interval | Last Run | Next Run |
+----------+---------+----------+---------------------------+---------------------------+
| work_job | running | 5s | 2013-09-03 14:15:51 -0400 | 2013-09-03 14:15:56 -0400 |
| loop_job | running | 5s | 2013-09-03 14:15:38 -0400 | 2013-09-03 14:15:38 -0400 |
+----------+---------+----------+---------------------------+---------------------------+
```Add another instance of a job
-----------------------------```
add work_job_2 every 2s
> Added job work_job_2
``````
list
> +------------+---------+----------+---------------------------+---------------------------+
| Name | Status | Interval | Last Run | Next Run |
+------------+---------+----------+---------------------------+---------------------------+
| work_job | running | 5s | 2013-09-03 14:20:36 -0400 | 2013-09-03 14:20:41 -0400 |
| loop_job | running | 5s | 2013-09-03 14:15:38 -0400 | 2013-09-03 14:15:38 -0400 |
| work_job_2 | running | 2s | 2013-09-03 14:20:37 -0400 | 2013-09-03 14:20:39 -0400 |
+------------+---------+----------+---------------------------+---------------------------+
```Delete job
----------```
delete work_job_2
> Deleted job work_job_2
```Pause jobs
----------```
pause work_job
> Paused job work_job
```Resume jobs
----------```
resume work_job
> Resumed job work_job
```