為了加強對 FineBI 工程的管理,隨時監視其運作狀態,可在平台中開啓日誌記錄,如下圖所示:
注:平台日誌的設定僅影響系統日誌的匯出,不影響操作日誌。
LogDB 是 FineBI
日誌監視開啓之後,用於儲存日誌的內建資料庫,那麼 FineBI 日誌都包含哪些內容呢?
本文將簡單介紹 LogDB 中各個資料表的含義以及欄位的含義。
資料庫 LogDB 中表的實際應用可以參考:LogDB 的實際應用場景
1)以管理者身分進入數據決策系統,點選管理系統>資料連結>資料連結管理>建立資料連結,如下圖所示:
2)資料連結方式選擇其他>其他 JDBC,如下圖所示:
3)如下圖配置好資料連結資訊,點選儲存即可。
注:使用 LogDB 資料表時,不支援 實時資料
1)以管理者身分進入數據決策系統,點選管理系統>資料連結>伺服器資料集>建立資料集>SQL 資料集,如下圖所示:
2)輸入資料庫查詢語句,點選預覽按鈕即可查詢 LogDB 中的資料表。如下圖所示:
Logdb 資料庫中各個資料表和表欄位的含義,請參見:LogDB 表結構
本章將簡單介紹LogDB支援的查詢文法,本文未列舉的文法,不確定可用。
SQL 語句範例:
1)select * from fine_record_execute
2)select tname, displayName, consume from fine_record_execute
GROUP BY 查詢,有 SUM,COUNT, MAX, MIN, AVG 這五種聚合方式。
如果SQL語句中不寫聚合方式,會預設使用 COUNT 。
1)select sum(consume) from fine_record_execute group by tname, displayName
2)select consume from fine_record_execute group by tname, displayName
等同於:select COUNT(consume) from fine_record_execute group by tname, displayName
3)select min(consume), max(consume) from fine_record_execute group by tname, displayName
簡單的 WHERE 過濾條件,支援 AND, OR, =,<>,>,>=, <,<=, in, isnull
1)select * from fine_record_execute where consume > 10
2)select sum(consume) from fine_record_execute where consume > 10 and consume < 100 group by tname, displayName
3)select consume from fine_record_execute where tname = `doc/Advanced/Chart/GraphSwitching/多图表实现统一切换.frm`
4)select sum(consume) from fine_record_execute where tname in (`doc/Advanced/Chart/GraphSwitching/多图表实现统一切换.frm`, `doc/Advanced/Chart/Combination/柱形-面积组合图.cpt`) group by tname, displayName
todate() 結果的日期格式為:2018-12-18 10:15:26
1) select todate(time) from fine_record_execute
2) select * from fine_record_execute where todate(time)<'2018-12-18 10:15:26' and todate(time)>'2018-12-17 10:15:26'
只支援前後‘%’的用法
注1:支援使用 like 進行模糊查詢,不支援 not like 用法 。
注2:目前只支援 '%',暫不支援通配符 ‘_’,需要更新 2019-06-14 以後的 JAR。
1)select * from fine_record_execute where tname like '%demo%'
問題描述:
在 LogDB 資料庫中新增表後,更新失敗。平台報錯:更新失敗,請聯絡管理者查看報錯資訊。如下圖所示:
原因分析:
1)編輯過的 基礎表 更新會巢,但目前 swift 不支援巢。所以,FineBI 目前暫不支援本節「問題描述」中的操作。
2)LogDB不支援增量更新,logdb本身就是內部資料,不建議外部連結,如果要使用抽數查看,可以使用全量更新。
LogDB 資料庫fine_record_execute表中 browser 欄位一般記錄用戶端存取報表所用的瀏覽器版本,例如:CHROME/83.0.,當 browser 欄位值如下所示時:
{'Browser':'webkit','Version':'537.36','Agent':'mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/81.0.4044.138 safari/537.36','BoxModel':true,'terminal':'null'}
記錄的是瀏覽器請求頭user agent(使用者代理字串)的值,user agent相當於瀏覽器的唯一標識。
LogDB 資料庫fine_record_execute表中,一个 reportId 對應多個 tname ,如下圖所示:
儀表板被多次重命名,每次重命名後都對儀表板進行存取/匯出/列印操作,所以 fine_record_execute 表中一個範本編號會對應多個範本名稱。