thyzzv
thyzzv
Ah I had not noticed that the firmware check is done locally in the browser. Not on the device 180kb is indeed a lot.
We use it in a similar way as described by @Ehehal
@jonatan-ivanov Aha thanks. Fixed my code from: ``` MeterRegistryCustomizer prometheusHealthCheck(HealthEndpoint healthEndpoint) { return registry -> registry.gauge("application_health", healthEndpoint, PrometheusHealthMetricConfiguration::healthToCode); } ``` to: ``` MeterBinder prometheusHealthCheck(HealthEndpoint healthEndpoint) { return registry -> registry.gauge("application_health",...