django-debug-toolbar 之 記憶體資訊的外掛pympler
阿新 • • 發佈:2020-07-26
https://www.cnblogs.com/sfencs-hcy/p/10989298.html
1.安裝:pip install pympler或pip install -i https://pypi.tuna.tsinghua.edu.cn/simplepympler
2.配置:
DEBUG_TOOLBAR_PANELS = [ #debug_toolbar 面板顯示設定 # 'debug_toolbar.panels.versions.VersionsPanel', # 代表是哪個django版本 'debug_toolbar.panels.timer.TimerPanel',# 用來計時的,判斷載入當前頁面總共花的時間 # 'debug_toolbar.panels.settings.SettingsPanel', # 讀取django中的配置資訊 'debug_toolbar.panels.headers.HeadersPanel', #看到當前請求頭和響應頭資訊 'debug_toolbar.panels.request.RequestPanel', #當前請求的想資訊(檢視函式,Cookie資訊,Session資訊等) 'debug_toolbar.panels.sql.SQLPanel', # 檢視SQL語句 'debug_toolbar.panels.staticfiles.StaticFilesPanel',# 靜態檔案 'debug_toolbar.panels.templates.TemplatesPanel',# 模板檔案 'debug_toolbar.panels.cache.CachePanel',# 快取 'debug_toolbar.panels.signals.SignalsPanel',# 訊號 'debug_toolbar.panels.logging.LoggingPanel',# 日誌 'debug_toolbar.panels.redirects.RedirectsPanel',# 重定向 'pympler.panels.MemoryPanel' #記憶體統計 ]