2013-02-08 06:03:45 -05:00
|
|
|
class MessageBusDiags
|
|
|
|
|
|
|
|
@host_info = {}
|
|
|
|
|
|
|
|
def self.my_id
|
|
|
|
@my_id ||= "#{`hostname`}-#{Process.pid}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.seen_host(name)
|
|
|
|
@host_info[name] = DateTime.now
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.establish_peer_names
|
2017-07-27 21:20:09 -04:00
|
|
|
MessageBus.publish "/server-name", channel: "/server-name-reply/#{my_id}"
|
2013-02-08 06:03:45 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.seen_hosts
|
|
|
|
@host_info
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-08 06:03:45 -05:00
|
|
|
unless @subscribed
|
|
|
|
|
2015-05-03 22:21:00 -04:00
|
|
|
MessageBus.subscribe "/server-name-reply/#{my_id}" do |msg|
|
2013-02-08 06:03:45 -05:00
|
|
|
MessageBusDiags.seen_host(msg.data)
|
|
|
|
end
|
|
|
|
|
2015-05-03 22:21:00 -04:00
|
|
|
MessageBus.subscribe "/server-name" do |msg|
|
|
|
|
MessageBus.publish msg.data["channel"], MessageBusDiags.my_id
|
2013-02-08 06:03:45 -05:00
|
|
|
end
|
|
|
|
@subscribed = true
|
|
|
|
end
|
|
|
|
end
|