Project
Reverse Dependencies for amq-protocol
The projects listed here declare amq-protocol as a runtime or development dependency
2.52
Easy to use, feature complete Ruby client for RabbitMQ 3.9 and later versions.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Popularity
Activity
Airbrake is an online tool that provides robust exception tracking in any of
your Ruby applications. In doing so, it allows you to easily review errors, tie
an error to an individual piece of code, and trace the cause back to recent
changes. The Airbrake dashboard provides easy categorization, searching, and
prioritization of exceptions so that when errors occur, your team can quickly
determine the root cause.
Additionally, this gem includes integrations with such popular libraries and
frameworks as Rails, Sinatra, Resque, Sidekiq, Delayed Job, Shoryuken,
ActiveJob and many more.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.44
Mature EventMachine-based RabbitMQ client.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.11
This plugin provides native RabbitMQ instrumentation
for monitoring and metrics collection, including:
service health, message, consumer, and queue health/metrics
via `rabbitmq_management`, and more
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.05
amq-client is a fully-featured, low-level AMQP 0.9.1 client with pluggable networking I/O adapters (EventMachine, cool.io, Eventpanda and so on) and supposed to back more opinionated AMQP clients (such as amqp gem) or be used directly in cases when access to more advanced AMQP 0.9.1 features is more important that convenient APIs
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.05
The Sensu transport abstraction library
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.02
A highly available, reliable messaging infrastructure
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.01
Gorgon provides a method for distributing the workload of running a ruby test suites. It relies on amqp for message passing, and rsync for the synchronization of source code.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.01
QueueingRabbit is a Ruby library providing a flexible DSL to interact with a
RabbitMQ server.
Any Ruby class or Module can be transformed into QueueingRabbit's background
job by including QueueingRabbit::Job module. It is also possible to inherit
your class from QueueingRabbit::AbstractJob abstract class.
The library is bundled with a Rake task to start a worker processing a list
of specified jobs.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
= DESCRIPTION:
Provides a Chef handler which can report run status, including any changes that were made, to a rabbit server. In the case of failed runs a backtrace will be included in the details reported. Based on the Graylog Gelf handler by Jon Wood (<jon@blankpad.net>) https://github.com/jellybob/chef-gelf
= REQUIREMENTS:
* A Rabbit server running somewhere.
= USAGE:
This example makes of the chef_handler cookbook, place some thing like this in cookbooks/chef_handler/recipes/rabbit.rb and add it to your run list.
include_recipe "chef_handler::default"
gem_package "chef-rabbit" do
action :nothing
end.run_action(:install)
# Make sure the newly installed Gem is loaded.
Gem.clear_paths
require 'chef/rabbit'
chef_handler "Chef::RABBIT::Handler" do
source "chef/rabbit"
arguments({
:connection => {
:host => "your_rabbit_server",
:user => "rabbit_user",
:pass => "rabbit_pass",
:vhost => "/stuff"
}
:queue => {
:name => "some_queue",
:params => {
:durable => true,
...
}
},
:exchange => {
:name => "some_exchange",
:params => {
:durable => true,
...
}
},
:timestamp_tag => "@timestamp"
})
supports :exception => true, :report => true
end.run_action(:enable)
Arguments take the form of an options hash, with the following options:
* :connection - http://rubybunny.info/articles/connecting.html
* :queue - rabbit queue info to use. name is set to "chef-client" + durable = true by default
* :exchange - rabbit exchange to use .default_exchange + durable = true by default
* :timestamp_tag - tag for timestamp "timestamp" by default
* :blacklist ({}) - A hash of cookbooks, resources and actions to ignore in the change list.
= BLACKLISTING:
Some resources report themselves as having updated on every run even if nothing changed, or are just things you don't care about. To reduce the amount of noise in your logs these can be ignored by providing a blacklist. In this example we don't want to be told about the GELF handler being activated:
chef_handler "Chef::RABBIT::Handler" do
source "chef/rabbit"
arguments({
:blacklist => {
"chef_handler" => {
"chef_handler" => [ "nothing", "enable" ]
}
}
})
supports :exception => true, :report => true
end.run_action(:enable)
= LICENSE and AUTHOR:
Copyright 2014 by MTN Satellite Communications
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Easy to use, feature complete Ruby client for RabbitMQ 3.3 and later versions.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Replicate models across applications
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
AMQP publisher and subscriber component for the RFlow FBP framework. Also includes the necessary AMQP::Message message type
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity