|
@@ -21,6 +21,9 @@ const (
|
|
|
FKTopicAdLogOds = "fkey_topic_ad_log_ods" // FK Ad log topic
|
|
FKTopicAdLogOds = "fkey_topic_ad_log_ods" // FK Ad log topic
|
|
|
FKTopicUserUploadLogOds = "fkey_topic_user_upload_log_ods"
|
|
FKTopicUserUploadLogOds = "fkey_topic_user_upload_log_ods"
|
|
|
FKTopicIssueCustomerOds = "fkey_topic_issue_customer_ods" // FK 用户问题反馈 topic
|
|
FKTopicIssueCustomerOds = "fkey_topic_issue_customer_ods" // FK 用户问题反馈 topic
|
|
|
|
|
+
|
|
|
|
|
+ FKTopicApiLaunchLogOds = "fkey_topic_api_launch_log_ods"
|
|
|
|
|
+ FKTopicApiOtherLogOds = "fkey_topic_api_other_log_ods"
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
const (
|
|
@@ -33,6 +36,7 @@ const (
|
|
|
STTopicBoostOdsReconnection = "speedtop_topic_boost_ods_reconnection"
|
|
STTopicBoostOdsReconnection = "speedtop_topic_boost_ods_reconnection"
|
|
|
STTopicBoostOdsConnection = "speedtop_topic_boost_ods_connection"
|
|
STTopicBoostOdsConnection = "speedtop_topic_boost_ods_connection"
|
|
|
STTopicBoostOdsConnectionHistory = "speedtop_topic_boost_ods_connection_history"
|
|
STTopicBoostOdsConnectionHistory = "speedtop_topic_boost_ods_connection_history"
|
|
|
|
|
+ STTopicBoostOdsRouteHistory = "speedtop_topic_boost_ods_route_history"
|
|
|
STTopicBoostOdsReconnectionRecord = "speedtop_topic_boost_ods_reconnection_record"
|
|
STTopicBoostOdsReconnectionRecord = "speedtop_topic_boost_ods_reconnection_record"
|
|
|
STTopicBoostOdsRoutingNodes = "speedtop_topic_boost_ods_routing_nodes"
|
|
STTopicBoostOdsRoutingNodes = "speedtop_topic_boost_ods_routing_nodes"
|
|
|
STTopicSpeedTestOds = "speedtop_topic_speed_test_ods"
|
|
STTopicSpeedTestOds = "speedtop_topic_speed_test_ods"
|
|
@@ -45,8 +49,6 @@ const (
|
|
|
STTopicBoostResultOds = "speedtop_topic_boost_result_ods" // SpeedTop Boost result topic
|
|
STTopicBoostResultOds = "speedtop_topic_boost_result_ods" // SpeedTop Boost result topic
|
|
|
STTopicAdLogOds = "speedtop_topic_ad_log_ods" // SpeedTop Ad log topic
|
|
STTopicAdLogOds = "speedtop_topic_ad_log_ods" // SpeedTop Ad log topic
|
|
|
STTopicUserUploadLogOds = "speedtop_topic_user_upload_log_ods"
|
|
STTopicUserUploadLogOds = "speedtop_topic_user_upload_log_ods"
|
|
|
-
|
|
|
|
|
- STTopicPeakMain = "speedtop_topic_peak_main" // Speedtop 削峰填谷主topic
|
|
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
const (
|
|
@@ -85,3 +87,22 @@ const (
|
|
|
ZdTopicUpdateReminderEventOds = "zipdrama_topic_update_reminder_event_ods"
|
|
ZdTopicUpdateReminderEventOds = "zipdrama_topic_update_reminder_event_ods"
|
|
|
ZdTopicGuidedEvaluationOds = "zipdrama_topic_guided_evaluation_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" // 用户活跃日志
|
|
|
|
|
+)
|