From c197b802a1fec7bce2196a91a5b500dfa5cb07fe Mon Sep 17 00:00:00 2001 From: xuyong Date: Tue, 1 Apr 2025 19:25:50 +0800 Subject: [PATCH] add uncheck list for hisysevent -v Signed-off-by: xuyong --- frameworks/native/hisysevent_json_decorator.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frameworks/native/hisysevent_json_decorator.cpp b/frameworks/native/hisysevent_json_decorator.cpp index 3543c70..245cd4a 100644 --- a/frameworks/native/hisysevent_json_decorator.cpp +++ b/frameworks/native/hisysevent_json_decorator.cpp @@ -45,7 +45,8 @@ constexpr int NAME_INDEX = 2; const char* INNER_BUILD_KEYS[] = { "__BASE", "domain_", "name_", "type_", "level_", "tag_", "time_", "tz_", "pid_", "tid_", "uid_", "traceid_", "log_", - "id_", "spanid_", "pspanid_", "trace_flag_", "info_", "seq_" }; + "id_", "spanid_", "pspanid_", "trace_flag_", "info_", "seq_", + "period_seq_"}; const std::string VALID_LEVELS[] = { "CRITICAL", "MINOR" }; const std::map EVENT_TYPE_MAP = {{"FAULT", 1}, {"STATISTIC", 2}, {"SECURITY", 3}, {"BEHAVIOR", 4} }; } -- Gitee