Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复容器关联坐标轴位置 --bug=137932485 #4956

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bkmonitor/packages/monitor_web/scene_view/builtin/apm.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,11 @@ def get_view_config(cls, view: SceneViewModel, params: Dict = None, *args, **kwa
view_config = cls._replace_variable(view_config, "${app_name}", app_name)
view_config = cls._replace_variable(view_config, "${service_name}", service_name)
view_config = cls._replace_variable(view_config, "${span_id}", span_id)
# trace检索处将图表的维度全部改为显示在下方 而不是右边
for i in view_config.get("overview_panels", []):
for j in i.get("panels", []):
j.update({"options": {"legend": {"placement": "bottom", "displayMode": "list"}}})

return view_config

return cls._get_non_host_view_config(builtin_view, params)
Expand Down
Loading