Wiard van Rij

Results 61 comments of Wiard van Rij

Well I just noticed it because I first checked the package on github and saw that they changed their mod file. I think it's "weird" or if anything, a little...

My "workaround" - or perhaps this should just be the way you should do it, is to go from: ``` gjson.Get(json, "panels.#.targets.#.expr") ``` Towards ``` gjson.Get(json, "panels.#.targets") ``` and then...

Thanks! I'm also not sure if it's a valid use-case. In the end I've solved it. Granted it doesn't look that neat.

Sorry for lag (: Target page: (it does not provide a popup for other labels) Service Discovery: ``` __address__="*Redacted*:15090" __meta_kubernetes_endpoints_label_app_kubernetes_io_component="metrics" __meta_kubernetes_endpoints_label_app_kubernetes_io_instance="prometheus" __meta_kubernetes_endpoints_label_app_kubernetes_io_managed_by="Helm" __meta_kubernetes_endpoints_label_app_kubernetes_io_name="kube-state-metrics" __meta_kubernetes_endpoints_label_app_kubernetes_io_part_of="kube-state-metrics" __meta_kubernetes_endpoints_label_app_kubernetes_io_version="2.3.0" __meta_kubernetes_endpoints_label_helm_sh_chart="kube-state-metrics-4.4.3" __meta_kubernetes_endpoints_labelpresent_app_kubernetes_io_component="true" __meta_kubernetes_endpoints_labelpresent_app_kubernetes_io_instance="true" __meta_kubernetes_endpoints_labelpresent_app_kubernetes_io_managed_by="true" __meta_kubernetes_endpoints_labelpresent_app_kubernetes_io_name="true"...

@arkfen Could you check in Docker for Windows if your C: drive is actually shared? Docker for Windows -> Settings -> Shared Drivers -> Enabled for C:

AWS claims (and to be really honest, I believe them, unless we are suddenly the only ones doing this?) that they are 100% compatible with MySQL. So, I'm actually going...

Ok, I did some testing. It only gave me more questions, but perhaps it helps. **On RDS:** ``` mysql> SELECT T.* FROM (SELECT configuration_hash as foo FROM alert_configuration as T);...

`mysql Ver 8.0.30 for Linux on x86_64 (MySQL Community Server - GPL)` and yes, your second query works there: ``` mysql> SELECT T.* FROM (SELECT configuration_hash as foo FROM alert_configuration)...

So my query was bad. Yet I still don't entirely understand this part of the query: ``` SELECT T.* FROM (SELECT ? AS alertmanager_configuration,? AS configuration_hash,? AS configuration_version,? AS org_id,?...

> I don't understand what you want us to generate Two reasons; 1: I'm terrible at SQL and my previous attempt to reproduce it with 'native MySQL' and Aurora has...