ESP-IDF: v5.4.1 ESP Matter: fb42f3f23d9b865e482a1e9deaa2cacb64eb06e6 I have added this code to the light example: ```cpp // Add Software Diagnostics cluster to root node endpoint_t *root_endpoint = endpoint::get(node, 0); cluster::software_diagnostics::config_t software_diagnostics_config; cluster_t* cluster = cluster::software_diagnostics::create(root_endpoint, &software_diagnostics_config, CLUSTER_FLAG_SERVER); // Add the Software Diagnostics cluster features cluster::software_diagnostics::feature::watermarks::add(cluster); // Will add the CurrentHeapHighWatermark attribute // Add some optional attributes esp_matter::cluster::software_diagnostics::attribute::create_current_heap_free(cluster, 0); esp_matter::cluster::software_diagnostics::attribute::create_current_heap_used(cluster, 0); esp_matter::cluster::software_diagnostics::attribute::create_thread_metrics(cluster, nullptr, 0, 0); ``` I get values for CurrentHeapFree and CurrentHeapUsed, but not for CurrentHeapHighWatermark. What is missing?