https://github.com/instrumental/metrician-test-harness
A place to test Metrician with live code
https://github.com/instrumental/metrician-test-harness
Last synced: 2 months ago
JSON representation
A place to test Metrician with live code
- Host: GitHub
- URL: https://github.com/instrumental/metrician-test-harness
- Owner: Instrumental
- License: mit
- Created: 2017-04-11T15:06:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T16:50:56.000Z (almost 9 years ago)
- Last Synced: 2025-01-27T19:54:22.875Z (over 1 year ago)
- Language: Ruby
- Homepage: https://metrician-test-harness.herokuapp.com/
- Size: 150 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
# Metrician Test Harness
This is a simple rails application connected to [Instrumental](https://instrumentalapp.com) via the [Metrician](https://github.com/Instrumental/metrician-ruby) library.
You can view live data [on heroku](https://metrician-test-harness.herokuapp.com/).
## Caveats
This is running on a free dyno, so right now only the sidekiq integration is working (because 1 worker).
## The running job system
What job system is happening right now?
```
heroku ps
```
#### Running sidekiq:
```
heroku ps:scale worker=0 resque=0 sidekiq=1
```
#### Running resque:
```
heroku ps:scale worker=0 sidekiq=0 resque=1
```
#### Running delayed_job:
```
heroku ps:scale resque=0 sidekiq=0 worker=1
```
#### Shut them all down. Forever.
```
heroku ps:scale resque=0 sidekiq=0 worker=0
```