nilscam
Hello
,
I would like to monitore phoenix socket process, to count the current user connected to my application, without having them to join a channel.
defmodule ChatWeb.UserSocket do
use Phoenix.Socket
channel "topic:*", ChatWeb.Channel
def connect(_params, socket) do
:ok = SocketWatcher.monitor(socket.transport_pid)
{:ok, socket}
end
def id(_socket), do: nil
end
The problem here is that transport_pid is nil…
As explained chrismccord in this post, a socket transport_id field is nil until the connection has been authorized in UserSocket.connect/3.
Is there a way to implement a callback for UserSocket.connect/3 method, where i can get this transport_id and monitore it.
Thanks for your help.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
LostKobrakai
Can you elaborate on that constraint? Phoenix Presence basically solved the problem of tracking users.
nilscam
In this monitore function, i use Presence ^^
I would like to do something like this. But this code doesn’t work anymore with newer phoenix versions. Transport_id is now nil until the connection has been authorized.
LostKobrakai
You should be able to do exactly that in a channel.
nilscam
But as i said in the first sentence of my Post: “I would like to monitore phoenix socket process, to count the current user connected to my application, without having them to join a channel.”
LostKobrakai
Which is why I asked what’s preventing you from using a channel. Is there a particular reason for this constraint? Letting users join an additional channel doesn’t sound like a particular high barrier.
nilscam
I’m building a SAAS product. I bill for number of simultaneous connected users.
Actually, in the SDK I give to my clients, when they connect to my service, i force them to join a special channel which is only used to count the number of simultaneous users thanks to
Phoenix.Presence.The problem is that if my clients comment the line that join this special channel, they can potentially use my service for free without any limit.
LostKobrakai
Then it might be worth going the route @chrismccord mentioned in the already linked topic and implement a custom
Phoenix.Socket, which allows you to track the socket process using presence.nilscam
implementing my own socket seems pretty complicated compared to what I need.
I just need a callback that give me the pid of newly connected socket.
I think there must be an alternative solution that can solve my problem more simply.
LostKobrakai
Copy the implementation of phoenix and add the necessary callback or try to make a case for adding it to phoenix. The latter could include the first one as a PR.