Andrey Novikov
Andrey Novikov
I will look at it soon. Sorry for the late reply.
Thank you for pointing it out! @palkan, any thoughts? I have no idea for now and it will require some time to investigate. I hope I will be able to...
> we broadcast directly via AnyCable, not via ActionCable.server.pubsub: This is because we want it to be also usable without Rails. Not sure how to fix it there at the...
TL;DR: I just not sure that it is safe to apply expiration to other data structures, that's why I haven't added expiration on them. But I'm open to suggestions. There...
+1 on this. Also it would be useful to access underlying Ajv instance to setup other plugins like official [ajv-errors](https://github.com/ajv-validator/ajv-errors) which is required to [refer field names in error messages](https://github.com/ajv-validator/ajv-errors#referring-to-field-names)...
You can use per-group default tags available in yabeda since [0.9.0](https://github.com/yabeda-rb/yabeda/releases/tag/v0.9.0). See https://github.com/yabeda-rb/yabeda/pull/19 Upgrade yabeda gem and place this somewhere in your app initialization: ```ruby Yabeda.configure do default_tag :label, 'value',...
No, it is not possible now. It should be handled on main `yabeda` gem level, so I transferred this issue there. Can you please tell more about your use case?...
Hmm. From the one hand sounds reasonable. From the other – it is quite rare situation when you really need “global” counter without any segmentation. In that case missing required...
> We can configure sibling groups: > ```ruby > Yabeda.configure do > group :g1 > # metrics, default tags, etc > group :g2 > # metrics, default tags, etc >...
> ```ruby > Yabeda.configure do > group :g1 do > # config > group :g2 do > # config > end > # more g1 config > end > ```...