Phillipp Ohlandt
Phillipp Ohlandt
I saw you have custom error handlers. Something like that just for normal log output would be nice. What bugged me was the amount of log output I got when...
It's not urgent. I set the logger log-level to `:info`, that works for me now.
Valid points. For the atom keyed map: Maybe it's worth noting that in the readme? As you can see, my perform function is just the entry point to my real...
Maybe add an empty DynamicSupervisor to the main supervision tree. Since in Nerves Livebook, everything is one instance, it would be really easy to write some code (supervisor, genserver, etc.)...
The poor mans version using pure livebook is this: ```elixir Picam.Camera.start_link() Picam.set_size(720, 0) ``` ```elixir frame = Kino.Frame.new() ``` ```elixir for i
Ok, the problem is, that for regular slack events (message, etc.), `channel` is a string. But when you get the `channel_joined` event, `channel` is an object with information about the...
Same problem with `team_join` and `user_change` events because they have objects in the `user` key and not strings.
The lib itself works with ETS so the metrics state is not distributed to all members in a cluster. I want that the `/metrics` endpoint of all of my nodes...
Because I see my state as one unit and not as a unit per node. Each node will have a different part of the whole state and all entrypoints (`/metrics`,...
> but what you will do if network split, how you'll know the state Valid question for everything distributed > plus prometheus does exactly this - aggregates. yes it does,...