Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pelletier/bismuth
RESTful API for RabbitMQ that does not suck (too hard)
https://github.com/pelletier/bismuth
Last synced: 25 days ago
JSON representation
RESTful API for RabbitMQ that does not suck (too hard)
- Host: GitHub
- URL: https://github.com/pelletier/bismuth
- Owner: pelletier
- Created: 2010-08-03T17:28:04.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-02-07T20:28:11.000Z (over 13 years ago)
- Last Synced: 2024-05-08T17:41:28.431Z (6 months ago)
- Language: Erlang
- Homepage:
- Size: 191 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compile & use
Edit config.cfg to fit your needs, then run!
$ make start
You can also just compile:
$ make bismuth
Then run:
$ erl -pa ./ebin -pa ./deps/*/ebin -name bismuth -s bismuth_app boot -sname bismuth@yourhost -boot start_sasl
# URIs
The schema is simple:
//[optional/args/]
So we have:
- /queues/
- List the queues and provide their stats.
- /queues/queuename/
- Retrieve the informations about the given queue.
You can always provide the following `GET` parameters:
- vhost
- The vhost you want to query. Default is /.
- callback
- The callback for JSONP calls.