|
| 1 | +// Copyright 2021 Espressif Systems (Shanghai) PTE LTD |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +#pragma once |
| 16 | + |
| 17 | +#if CONFIG_ENABLE_ESP_INSIGHTS_TRACE |
| 18 | +#include <esp_insights.h> |
| 19 | +#include <esp_log.h> |
| 20 | +#include <platform/PlatformManager.h> |
| 21 | +#include <tracing/esp32_trace/esp32_tracing.h> |
| 22 | +#include <tracing/registry.h> |
| 23 | + |
| 24 | +#if CONFIG_ENABLE_ESP_INSIGHTS_SYSTEM_STATS |
| 25 | +#include <tracing/esp32_trace/insights_sys_stats.h> |
| 26 | +#define START_TIMEOUT_MS 60000 |
| 27 | +#endif |
| 28 | + |
| 29 | +static void register_backend(intptr_t context) |
| 30 | +{ |
| 31 | + static chip::Tracing::Insights::ESP32Backend backend; |
| 32 | + chip::Tracing::Register(backend); |
| 33 | + |
| 34 | +#if CONFIG_ENABLE_ESP_INSIGHTS_SYSTEM_STATS |
| 35 | + chip::System::Stats::InsightsSystemMetrics::GetInstance().RegisterAndEnable(chip::System::Clock::Timeout(START_TIMEOUT_MS)); |
| 36 | +#endif |
| 37 | +} |
| 38 | + |
| 39 | +void enable_insights(const char * insights_auth_key) |
| 40 | +{ |
| 41 | + esp_insights_config_t config = { |
| 42 | + .log_type = ESP_DIAG_LOG_TYPE_ERROR | ESP_DIAG_LOG_TYPE_WARNING | ESP_DIAG_LOG_TYPE_EVENT, |
| 43 | + .auth_key = insights_auth_key, |
| 44 | + }; |
| 45 | + |
| 46 | + esp_err_t ret = esp_insights_init(&config); |
| 47 | + |
| 48 | + if (ret != ESP_OK) |
| 49 | + { |
| 50 | + ESP_LOGE("Insights", "Failed to initialize ESP Insights, err:0x%x", ret); |
| 51 | + } |
| 52 | + |
| 53 | + chip::DeviceLayer::PlatformMgr().ScheduleWork(register_backend, reinterpret_cast<intptr_t>(nullptr)); |
| 54 | +} |
| 55 | +#endif // CONFIG_ENABLE_ESP_INSIGHTS_TRACE |
0 commit comments