_ActionCable.server.open_connections_statistics
_、_ActionCable.server.connections.length
_、ActionCable.server.connections.map(&:statistics)
、ActionCable.server.connections.select(&:beat).count
などを見てきましたが、これは「プロセスごと」(サーバー、コンソール、サーバーワーカー、など)。現時点でActionCableにサブスクライブしている全員を見つけるにはどうすればよいですか?これにより、各環境(開発、ステージング、本番)のすべてのRailsプロセスで同じ値が返されます。たとえば、開発コンソールでは、開発サーバー上の接続も確認できます。理論的には、同じサブスクリプションアダプター(redis、async、postgres)を使用します。
Rails 5.0.0.beta3、Ruby 2.3.0
redis
を使用している場合は、すべてのpubsubチャネルを表示できます。
[2] pry(main)> Redis.new.pubsub("channels", "action_cable/*")
[
[0] "action_cable/Z2lkOi8vbWFvY290LXByb2plL3QvUmVzcG9uXGVyLzEx",
[1] "action_cable/Z2lkOi8vbWFvY290LXByb2plL3QvUmVzcG9uXGVyLzI"
]
これにより、すべてのPumaワーカーのすべてのWebSocket接続が一緒に表示されます。また、複数のサーバーがある場合は、おそらくここにもそれらが表示されます。
ActionCable
(およびRedis)をより具体的に...
このチャネルを想定すると:
class RoomChannel < ApplicationCable::Channel
end
自分で作成するのではなく、ActionCableからRedisアダプターを入手します(それ以外の場合は、config/cable.yml
からURLを指定する必要があります)。
pubsub = ActionCable.server.pubsub
config/cable.yml
で指定したchannel_prefixを含むチャネル名を取得します。
channel_with_prefix = pubsub.send(:channel_with_prefix, RoomChannel.channel_name)
接続されているすべてのチャネルをRoomChannel
から取得します。
# pubsub.send(:redis_connection) actually returns the Redis instance ActionCable uses
channels = pubsub.send(:redis_connection).
pubsub('channels', "#{channel_with_prefix}:*")
サブスクリプション名をデコードします。
subscriptions = channels.map do |channel|
Base64.decode64(channel.match(/^#{Regexp.escape(channel_with_prefix)}:(.*)$/)[1])
end
ActiveRecord
オブジェクトにサブスクライブしている場合、たとえばRoom
(stream_for
を使用)の場合、IDを抽出できます。
# the GID URI looks like that: gid://<app-name>/<ActiveRecordName>/<id>
gid_uri_pattern = /^gid:\/\/.*\/#{Regexp.escape(Room.name)}\/(\d+)$/
chat_ids = subscriptions.map do |subscription|
subscription.match(gid_uri_pattern)
# compacting because 'subscriptions' include all subscriptions made from RoomChannel,
# not just subscriptions to Room records
end.compact.map { |match| match[1] }