技術情報

13. Piwik が自動的にトップ 500 またはトップ 1000 列より後ろのデータを、”Others” のラベルに入れてしまいます。Piwik のデータ制限を強制的に外すには ?

2015年12月17日 How To

※注 この記事は Piwik1.8~2.17のアーカイブ情報です

パフォーマンス上の理由から、Piwik はデフォルトで最初のトップ 500 のページ、トップ 1000 のキーワード、トップ 1000 のウェブサイトとカスタム変数などをアーカイブします。Piwik は次に全ての残りのページ、キーワードなどを “Others” ラベルに集めます。全てのデータをアーカイブしたり、ただ現在の列の制限より多くアーカイブしたい場合、これらの変数を設定ファイル config/config.ini.php で上書きすることができます。たとえば、全てのテーブルを 5000 のエントリーに制限するには、config/config.ini.php に以下を追加します。

[General]
; maximum number of rows for any of the Referers tables  (keywords, search engines, campaigns, etc. ) , and Custom variables names
datatable_archiving_maximum_rows_referers = 5000
; maximum number of rows for any of the Referers subtable  (search engines by keyword, keyword by campaign, etc. ) , and Custom variables values
datatable_archiving_maximum_rows_subtable_referers = 5000
; maximum number of rows for any of the Actions tables  (pages, downloads, outlinks ) 
datatable_archiving_maximum_rows_actions = 5000
; maximum number of rows for pages in categories  (sub pages, when clicking on the + for a page category ) 
datatable_archiving_maximum_rows_subtable_actions = 5000
; maximum number of rows for any of the Events tables  (Categories, Actions, Names ) 
datatable_archiving_maximum_rows_events = 500
; maximum number of rows for sub-tables of the Events tables  (eg. for the subtables Categories>Actions or Categories>Names ) .
datatable_archiving_maximum_rows_subtable_events = 100
; maximum number of rows for the Custom Variables names report
datatable_archiving_maximum_rows_custom_variables = 5000
; maximum number of rows for the Custom Variables values reports
datatable_archiving_maximum_rows_subtable_custom_variables = 5000

変更後、再処理のためにこの新しい列数と古いレポートが必要な場合は、レポートを再処理するには ? の FAQ をご確認ください。