Skip to content

Commit c415f91

Browse files
committed
Renamed all-about-analytics-data to data-model and updated all links to point to correct article
1 parent d2eb4b2 commit c415f91

16 files changed

+35
-34
lines changed

app/helpers/Content/Category/DevelopCategory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function getItems()
4848
new Guide('piwiks-reporting-api'),
4949
]),
5050
new Guide('piwik-on-the-command-line'),
51-
new Guide('all-about-analytics-data'),
51+
new Guide('data-model'),
5252
new EmptySubCategory('Database', [
5353
new Guide('persistence-and-the-mysql-backend'),
5454
new Guide('extending-database'),

app/helpers/Redirects.php

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ class Redirects
1313
public static function getRedirects()
1414
{
1515
return [
16-
'/guides' => '/',
17-
'/guides/' => '/',
18-
'/contributing' => '/guides/contributing-to-piwik-core',
19-
'/plugins' => '/develop',
20-
'/api-reference/metadata' => '/api-reference/reporting-api-metadata',
21-
'/api-reference/segmentation' => '/api-reference/reporting-api-segmentation',
22-
'/guides/automated-tests' => '/guides/tests',
23-
'/guides/mvc-in-piwik' => '/guides/controllers',
24-
'/guides/mvc-models' => '/guides/apis',
25-
'/guides/mvc-views' => '/guides/views',
26-
'/guides/mvc-controllers' => '/guides/controllers',
16+
'/guides' => '/',
17+
'/guides/' => '/',
18+
'/contributing' => '/guides/contributing-to-piwik-core',
19+
'/plugins' => '/develop',
20+
'/api-reference/metadata' => '/api-reference/reporting-api-metadata',
21+
'/api-reference/segmentation' => '/api-reference/reporting-api-segmentation',
22+
'/guides/automated-tests' => '/guides/tests',
23+
'/guides/mvc-in-piwik' => '/guides/controllers',
24+
'/guides/mvc-models' => '/guides/apis',
25+
'/guides/mvc-views' => '/guides/views',
26+
'/guides/mvc-controllers' => '/guides/controllers',
27+
'/guides/all-about-analytics-data' => '/guides/data-model',
2728
];
2829
}
2930
}

docs/archive-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Goal specific metrics are stored in the database in the `goals` column of serial
104104

105105
### Processed metrics
106106

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**.
108108

109109
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.
110110

docs/archiving.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ category: Develop
33
previous: log-data
44
next: archive-data
55
---
6-
# The Archiving Process
6+
# The archiving process
77

88
**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.
99

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ subGuides:
1212

1313
Read this guide if
1414

15-
* you'd like to know **how to aggregate, store and serve new analytics data with your plugin**
16-
* you'd like to know **what the Archiving Process is and how it is used to automatically aggregate and cache analytics data**
17-
* you'd like to know **how analytics data is stored and manipulated in PHP**
18-
* you'd like to know **what segments are and how you can define your own**
15+
- you'd like to know **how to aggregate, store and serve new analytics data with your plugin**
16+
- you'd like to know **what the Archiving Process is and how it is used to automatically aggregate and cache analytics data**
17+
- you'd like to know **how analytics data is stored and manipulated in PHP**
18+
- you'd like to know **what segments are and how you can define your own**
1919

2020
## About analytics
2121

docs/getting-started-part-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Ok! You've set up your development environment and created your plugin! Now all
166166

167167
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:
168168

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.
170170
- If you're interested in **changing the look and feel of Piwik**, read our [Theming](/guides/theming) guide.
171171
- If you're interested in **taking part in core development**, read our [Contributing to Piwik Core](/guides/contributing-to-piwik-core) guide.
172172
- 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.

docs/getting-started-part-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ If you visit [http://localhost/index.php?module=API&method=MyPlugin.getLastVisit
189189

190190
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.
191191

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.
193193
</div>
194194

195195
#### Displaying the report

docs/how-piwik-works.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Because Archive data must be fast to query, it is splitted in separate tables pe
169169
- `archive_blob_2014_11`: reports for November 2014
170170
-
171171

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).
173173

174174
### From Archive data to reports
175175

@@ -179,7 +179,7 @@ Reports are [`DataTable`](/api-reference/Piwik/DataTable) objects and are served
179179

180180
Sometimes, one persisted record can be the source of several API reports.
181181

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).
183183

184184
## Piwik's extensibility points
185185

docs/log-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
category: Develop
3-
previous: all-about-analytics-data
3+
previous: data-model
44
next: archiving
55
---
66
# Log data

docs/persistence-and-the-mysql-backend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,8 @@ Some options should be loaded on every non-tracking request. These options have
367367
## Learn more
368368

369369
* 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.
372372
* To learn **about Piwik's logging utility** see this section in our [Getting started extending Piwik](/guides/getting-started-part-1) guide.
373373
* To learn **about database backed sessions** read [this FAQ entry](http://piwik.org/faq/how-to-install/faq_133/).
374374
* To learn **how plugins can persist data** read the [Extending the Database](/guides/extending-database) guide.

0 commit comments

Comments
 (0)