You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/archive-data.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ Goal specific metrics are stored in the database in the `goals` column of serial
104
104
105
105
### Processed metrics
106
106
107
-
In the interests of [archiving](/guides/all-about-analytics-data#the-archiving-process) and database size efficiency, some metrics are not stored in database. They are instead calculated when needed using other metrics. These metrics are called **processed metrics**.
107
+
In the interests of [archiving](/guides/archiving) and database size efficiency, some metrics are not stored in database. They are instead calculated when needed using other metrics. These metrics are called **processed metrics**.
108
108
109
109
Below is the list of processed metrics that are calculated using *core metrics*. New reports that analyze visits, action types or conversions should be have these metrics added when possible.
Copy file name to clipboardExpand all lines: docs/archiving.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ category: Develop
3
3
previous: log-data
4
4
next: archive-data
5
5
---
6
-
# The Archiving Process
6
+
# The archiving process
7
7
8
8
**Log data** cannot be used directly for end-user reports because it would require to process an enormous amount of data every time the report is needed.
Copy file name to clipboardExpand all lines: docs/getting-started-part-1.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ Ok! You've set up your development environment and created your plugin! Now all
166
166
167
167
If you'd like to learn the basics of Piwik plugin development all at once, continue on to the [next part in this series of guides](/guides/getting-started-part-2). If you want to learn how to do just one thing, try reading one of our other guides:
168
168
169
-
- If you're interested in **creating new analytics reports**, you may want to read our [All About Analytics Data](/guides/all-about-analytics-data) and [Visualizing Report Data](/guides/visualizing-report-data) guides.
169
+
- If you're interested in **creating new analytics reports**, you may want to read about [Reports](/guides/reports) and [Visualizing Report Data](/guides/visualizing-report-data) guides.
170
170
- If you're interested in **changing the look and feel of Piwik**, read our [Theming](/guides/theming) guide.
171
171
- If you're interested in **taking part in core development**, read our [Contributing to Piwik Core](/guides/contributing-to-piwik-core) guide.
172
172
- If you're interested in **integrating Piwik with another technology**, you might want to read our [All About Tracking](/guides/all-about-tracking) guide to learn how to use our Tracking API. You might also want to read our [Piwik's HTTP API](/api-reference/tracking-api) guide to learn about Piwik's Reporting API.
Copy file name to clipboardExpand all lines: docs/getting-started-part-2.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -189,7 +189,7 @@ If you visit [http://localhost/index.php?module=API&method=MyPlugin.getLastVisit
189
189
190
190
This new API method directly accesses visit data. That is because the report is a real-time report. Most reports aren't in real-time because the amount of time it would take to process visit data would make the interface unusable.
191
191
192
-
Archived reports are calculated and **cached** during the [Archiving Process](http://piwik.org/docs/setup-auto-archiving/). To learn more, read our [All About Analytics Data](/guides/all-about-analytics-data) guide.
192
+
Archived reports are calculated and **cached** during the [Archiving Process](/guides/archiving). To learn more, read about Piwik's [Data Model](/guides/data-model) guide.
Copy file name to clipboardExpand all lines: docs/how-piwik-works.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -169,7 +169,7 @@ Because Archive data must be fast to query, it is splitted in separate tables pe
169
169
-`archive_blob_2014_11`: reports for November 2014
170
170
- …
171
171
172
-
The content of those archive tables is explained in more details in the ["Piwik database schema" guide](/guides/persistence-and-the-mysql-backend#archive-tables). The archiving process is explained in details in the ["All About Analytics Data" guide](/guides/all-about-analytics-data#the-archiving-process).
172
+
The content of those archive tables is explained in more details in the ["Piwik database schema" guide](/guides/persistence-and-the-mysql-backend#archive-tables). The archiving process is explained in details in the ["Archiving" guide](/guides/archiving).
173
173
174
174
### From Archive data to reports
175
175
@@ -179,7 +179,7 @@ Reports are [`DataTable`](/api-reference/Piwik/DataTable) objects and are served
179
179
180
180
Sometimes, one persisted record can be the source of several API reports.
181
181
182
-
You can read more details on how reports are created and served in the ["All About Analytics Data" guide](/guides/all-about-analytics-data#serving-reports).
182
+
You can read more details on how reports are created and served in the ["Reports" guide](/guides/reports).
Copy file name to clipboardExpand all lines: docs/persistence-and-the-mysql-backend.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -367,8 +367,8 @@ Some options should be loaded on every non-tracking request. These options have
367
367
## Learn more
368
368
369
369
* To learn **how the tracker inserts log data** see our [All About Tracking](/guides/all-about-tracking) guide.
370
-
* To learn **how log data is aggregated** see our [All About Analytics](/guides/all-about-analytics-data) guide and take a look at the [LogAggregator](/api-reference/Piwik/DataAccess/LogAggregator) class.
371
-
* To learn **how archive data is cached** see our [All About Analytics](/guides/all-about-analytics-data) guide.
370
+
* To learn **how log data is aggregated** see our [Archiving](/guides/archiving) guide and take a look at the [LogAggregator](/api-reference/Piwik/DataAccess/LogAggregator) class.
371
+
* To learn **how archive data is cached** see our [Archive Data](/guides/archive-data) guide.
372
372
* To learn **about Piwik's logging utility** see this section in our [Getting started extending Piwik](/guides/getting-started-part-1) guide.
0 commit comments