Skip to content

Commit daaae23

Browse files
committed
Merge branch 'feature/insights_integration' into 'main'
feature/esp-insights: Integrating esp-insights with esp-matter See merge request app-frameworks/esp-matter!647
2 parents 07bafe8 + e8deadf commit daaae23

File tree

6 files changed

+103
-4
lines changed

6 files changed

+103
-4
lines changed

docs/en/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ Table of Contents
2424
5. Security Considerations <security>
2525
6. RAM and Flash Optimizations <optimizations>
2626
7. API Reference <api-reference/index>
27+
8. Integration with esp-insights <insights>
2728
A1 Appendix FAQs <faq>

docs/en/insights.rst

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Enabling ESP-Insights in ESP-Matter
2+
===================================
3+
4+
- To learn more about esp-insights and get started, please refer [project README.md] (https://github.com/espressif/esp-insights/blob/main/README.md).
5+
- Before building the app, enable the option `ESP_INSIGHTS_ENABLED` through menuconfig.
6+
- Follow the steps present [here](https://github.com/espressif/esp-insights/blob/main/examples/README.md#set-up-esp-insights-account) to set up an `insights_account`, and create an auth key.
7+
- Create a file named `insights_auth_key.txt` in the project directory of the example.
8+
- Download the auth key and copy Auth Key to the example.
9+
10+
::
11+
12+
cp /path/to/auth/key.txt path/to/esp-matter/examples/generic_switch/insights_auth_key.txt
13+
14+
- Refer the esp-matter [generic switch example](https://github.com/espressif/esp-matter/blob/main/examples/generic_switch/main/app_main.cpp) to enable the traces and metrics reported by the esp32 tracing backend in the chip SDK on the insights dashboard and about how to use the auth key for enabling insights.
15+
- Enable the option `ENABLE_ESP_INSIGHTS_SYSTEM_STATS` to get a report of the system metrics in the chip SDK on the insights dashboard.
16+
17+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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

examples/generic_switch/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ if(CONFIG_IDF_TARGET_ESP32C2)
4848
endif()
4949

5050
idf_build_set_property(CXX_COMPILE_OPTIONS "-std=gnu++17;-Os;-DCHIP_HAVE_CONFIG_H;-Wno-overloaded-virtual" APPEND)
51+
52+
if (CONFIG_ENABLE_ESP_INSIGHTS_TRACE)
53+
target_add_binary_data(generic_switch.elf "insights_auth_key.txt" TEXT)
54+
endif()
55+
56+
idf_build_set_property(CXX_COMPILE_OPTIONS "-std=gnu++17;-Os;-DCHIP_HAVE_CONFIG_H" APPEND)
5157
idf_build_set_property(C_COMPILE_OPTIONS "-Os" APPEND)
5258
# For RISCV chips, project_include.cmake sets -Wno-format, but does not clear various
5359
# flags that depend on -Wformat

examples/generic_switch/README.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ See the [docs](https://docs.espressif.com/projects/esp-matter/en/latest/esp32/de
1717

1818
## 1. Additional Environment Setup
1919

20+
### 1.1 Enabling insights (Optional)
21+
22+
Follow the steps mentioned [here](https://docs.espressif.com/projects/esp-matter/en/latest/esp32/insights.html)
23+
24+
### 1.2 Flash the factory partition
25+
2026
The steps below should be followed in order to access the fixed-labels.
2127
- If monitoring the device using ``idf.py monitor``,press `` Ctrl + ]`` to stop the process.
2228
- The following command must be executed to flash the mfg partition:
@@ -26,6 +32,8 @@ esptool.py -p [port-name] write_flash 0x10000 mfg_binaries/20202020_3841.bin
2632
```
2733

2834
- Execute the command ``idf.py monitor``
35+
36+
## 2.Commissioning and Control
2937
- Commission the device with ``discriminator: 3841``and `` passcode: 20202020``
3038

3139
```
@@ -37,25 +45,27 @@ esptool.py -p [port-name] write_flash 0x10000 mfg_binaries/20202020_3841.bin
3745
- QRCode :
3846
- ![QRCode](mfg_binaries/matter_qrcode_20202020_3841.png)
3947
40-
- To read the fixed-labels, use chip-tool.
48+
### 2.1 Fixed-Labels
49+
- To read the fixed-labels, use chip-tool.
4150
4251
```
4352
chip-tool fixedlabel read label-list 0x7283 1
4453
```
4554
46-
The example command given below should be executed to write to the label-list of User Label Cluster.
55+
### 2.2 User-Labels
56+
- The example command given below should be executed to write to the label-list of User Label Cluster.
4757
4858
```
4959
chip-tool userlabel write label-list '[{"label":"room", "value":"bedroom 1"}, {"label":"orientation", "value":"east"}]' 0x7283 1
5060
```
5161
52-
To read label-list of User Label Cluster execute the command given below.
62+
- To read label-list of User Label Cluster execute the command given below.
5363
5464
```
5565
chip-tool userlabel read label-list 0x7283 1
5666
```
5767
58-
### Using the TagList Feature
68+
### 2.3 Using the TagList Feature
5969
6070
To read the taglist of the Descriptor cluster execute the command given below.
6171

examples/generic_switch/main/app_main.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <esp_matter_ota.h>
1616

1717
#include <common_macros.h>
18+
#include <enable_esp_insights.h>
1819
#include <app_priv.h>
1920
#include <app_reset.h>
2021
#include <app/util/attribute-storage.h>
@@ -34,6 +35,11 @@ using namespace esp_matter::endpoint;
3435
using namespace esp_matter::cluster;
3536
using namespace chip::app::Clusters;
3637

38+
#if CONFIG_ENABLE_ESP_INSIGHTS_TRACE
39+
extern const char insights_auth_key_start[] asm("_binary_insights_auth_key_txt_start");
40+
extern const char insights_auth_key_end[] asm("_binary_insights_auth_key_txt_end");
41+
#endif
42+
3743
namespace {
3844
// Please refer to https://github.com/CHIP-Specifications/connectedhomeip-spec/blob/master/src/namespaces
3945
constexpr const uint8_t kNamespaceSwitches = 43;
@@ -231,6 +237,10 @@ extern "C" void app_main()
231237
err = esp_matter::start(app_event_cb);
232238
ABORT_APP_ON_FAILURE(err == ESP_OK, ESP_LOGE(TAG, "Failed to start Matter, err:%d", err));
233239

240+
#if CONFIG_ENABLE_ESP_INSIGHTS_TRACE
241+
enable_insights(insights_auth_key_start);
242+
#endif
243+
234244
SetTagList(0, chip::Span<const Descriptor::Structs::SemanticTagStruct::Type>(gEp0TagList));
235245
SetTagList(1, chip::Span<const Descriptor::Structs::SemanticTagStruct::Type>(gEp1TagList));
236246

0 commit comments

Comments
 (0)