Преглед на файлове

feat: constant for stat

BaiLuoYan преди 4 дни
родител
ревизия
cb07acb462
променени са 1 файла, в които са добавени 23 реда и са изтрити 2 реда
  1. 23 2
      pb/constant/topic.go

+ 23 - 2
pb/constant/topic.go

@@ -21,6 +21,9 @@ const (
 	FKTopicAdLogOds                          = "fkey_topic_ad_log_ods"               // FK Ad log topic
 	FKTopicUserUploadLogOds                  = "fkey_topic_user_upload_log_ods"
 	FKTopicIssueCustomerOds                  = "fkey_topic_issue_customer_ods" // FK 用户问题反馈 topic
+
+	FKTopicApiLaunchLogOds = "fkey_topic_api_launch_log_ods"
+	FKTopicApiOtherLogOds  = "fkey_topic_api_other_log_ods"
 )
 
 const (
@@ -33,6 +36,7 @@ const (
 	STTopicBoostOdsReconnection       = "speedtop_topic_boost_ods_reconnection"
 	STTopicBoostOdsConnection         = "speedtop_topic_boost_ods_connection"
 	STTopicBoostOdsConnectionHistory  = "speedtop_topic_boost_ods_connection_history"
+	STTopicBoostOdsRouteHistory       = "speedtop_topic_boost_ods_route_history"
 	STTopicBoostOdsReconnectionRecord = "speedtop_topic_boost_ods_reconnection_record"
 	STTopicBoostOdsRoutingNodes       = "speedtop_topic_boost_ods_routing_nodes"
 	STTopicSpeedTestOds               = "speedtop_topic_speed_test_ods"
@@ -45,8 +49,6 @@ const (
 	STTopicBoostResultOds             = "speedtop_topic_boost_result_ods"         // SpeedTop Boost result topic
 	STTopicAdLogOds                   = "speedtop_topic_ad_log_ods"               // SpeedTop Ad log topic
 	STTopicUserUploadLogOds           = "speedtop_topic_user_upload_log_ods"
-
-	STTopicPeakMain = "speedtop_topic_peak_main" // Speedtop 削峰填谷主topic
 )
 
 const (
@@ -85,3 +87,22 @@ const (
 	ZdTopicUpdateReminderEventOds     = "zipdrama_topic_update_reminder_event_ods"
 	ZdTopicGuidedEvaluationOds        = "zipdrama_topic_guided_evaluation_ods"
 )
+
+const (
+	CommonPeakStream = "topic_peak_stream"    // 公共削峰填谷主topic
+	BlockyPopStream  = "topic_peak_stream_bp" // 小游戏的峰填谷topic
+)
+
+// BlockPOP Topics
+const (
+	BlockyPOPTopicUserPrimaryOds   = "blockypop_topic_user_primary_ods"   // 用户主键表
+	BlockyPOPTopicGameInstallOds   = "blockypop_topic_game_install_ods"   // 游戏安装日志
+	BlockyPOPTopicGamePlayOds      = "blockypop_topic_game_play_ods"      // 游戏游玩日志
+	BlockyPOPTopicAppConfigOds     = "blockypop_topic_app_config_ods"     // APP配置日志
+	BlockyPOPTopicGameListCfgOds   = "blockypop_topic_game_list_cfg_ods"  // 游戏列表配置日志
+	BlockyPOPTopicRatingOds        = "blockypop_topic_rating_ods"         // 好评弹窗日志
+	BlockyPOPTopicAdLoadOds        = "blockypop_topic_ad_load_ods"        // 广告加载日志
+	BlockyPOPTopicAdShowOds        = "blockypop_topic_ad_show_ods"        // 广告展示日志
+	BlockyPOPTopicIssueCustomerOds = "blockypop_topic_issue_customer_ods" // 用户反馈日志
+	BlockyPOPTopicUserActiveOds    = "blockypop_topic_user_active_ods"    // 用户活跃日志
+)