Frank Elsinga
Frank Elsinga
> we could have multiple metrics for the same monitor since You are not making a lot of sense to me. What do you mean with this? How would you...
That is not what I asked. I asked how the metrics would need to be labeled concretely. Our group monitors are hierarchical (a group can contain a group), while Prometheus...
What would you put under `**THIS_IS_THE_PARENT_NAME**` exactly? I think we are unclear about prerequesits. Are you aware that groups can contain groups? ``` Group A |--> Monitor B |--> Group...
Only selectively answering questions is quite painfull. > What would you put under `**THIS_IS_THE_PARENT_NAME**` exactly?
> What about chaining these? Like GroupA/Group/B See https://github.com/louislam/uptime-kuma/pull/4472 I don't know what is the best-practice in this situation > Are there any news about it Please have a look...
Thinking about it: Maybe replacing the individual group names with `.replace("/", "|")` and then joining with `/` could work. If someone wants to invest the time to add this feature,...
Okay.. so that seems somewhat `git bisect`-able As said by you, https://github.com/launchbadge/sqlx/pull/2940 is unrelated. I have included it in the bisect table below anyways for completeness. | Date | Commit...
(very much partially) debugging this: - The issue surfaces as this function gets triggered https://github.com/launchbadge/sqlx/blob/3bec3f0f0c0ae979679517a95279d71c8dea5717/sqlx-macros-core/src/query/args.rs#L58-L67 - So `param_type_for_id` returns `None`. - `param_type_for_id` is implemented here: https://github.com/launchbadge/sqlx/blob/3bec3f0f0c0ae979679517a95279d71c8dea5717/sqlx-core/src/type_checking.rs#L141-L153 That comes from macro...
expanding the `impl_type_checking` macro just once makes also does not yield anything wrong I can see ```rust #[cfg(feature = "json")] _ if ::type_info() == *info => Some(::sqlx_core::select_input_type!( sqlx::types::JsonValue )), ```...
Yea that definitely cleans things up a ton. Thanks 🙏 Sorry for the lacking progress, I was on vacation for the last month and am still in a bit of...