diff --git a/docs/5.x/piwiks-reporting-api.md b/docs/5.x/piwiks-reporting-api.md index 1ba8b4e46..1a103c6b8 100644 --- a/docs/5.x/piwiks-reporting-api.md +++ b/docs/5.x/piwiks-reporting-api.md @@ -85,6 +85,7 @@ This is the list of filters in the order in which they are applied: - `AddColumnsProcessedMetricsGoal::GOALS_OVERVIEW` (default): adds metrics for the goals overview and not individual goals - `AddColumnsProcessedMetricsGoal::GOALS_MINIMAL_REPORT`: add just one metric: `revenue_per_visit` (no per-goal metrics will be added) - `AddColumnsProcessedMetricsGoal::GOALS_FULL_TABLE`: displays per-goal metrics for every goal of the site including the ecommerce goal + - `filter_show_goal_columns_process_goals`: Includes process goals using goal identifiers. Metrics are exported to additional columns for the specified goals and in the respective order listed. 7. **[Sort](/api-reference/Piwik/DataTable/Filter/Sort)**: Sorts the rows. - `filter_sort_column`: column to sort (the filter is applied if set) - `filter_sort_order`: `'desc'` or `'asc'` diff --git a/docs/5.x/reporting-api.md b/docs/5.x/reporting-api.md index d6e2f99c0..8189dd292 100644 --- a/docs/5.x/reporting-api.md +++ b/docs/5.x/reporting-api.md @@ -56,7 +56,7 @@ _referrerName==Google,referrerName==Bing;country==IN_ * see [segmentation documentation](/api-reference/segmentation) for the list of available dimensions & metrics, example values for each, and more information about the custom segment parameter -* **format**; defines the format of the output +* **format**; defines the format of the output. * xml * json (if you want to do [cross domain request in ajax](https://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/) and get json data, you can wrap the json data around a function call by using the **jsoncallback** parameter) @@ -65,7 +65,9 @@ _referrerName==Google,referrerName==Bing;country==IN_ * html * rss (when **date** is a range for example date=last10 or date=previous15) * original; to fetch the original PHP data structure. This is useful when you call the Piwik API [internally using the PHP code](/guides/querying-the-reporting-api) - + +* **format_metrics**; defines the output format of the metrics' values. + * By appending `&format_metrics=0`, the metrics' values are displayed as numerical values in the output instead of the default percent rate. * **filter\_limit**; defines the number of rows to be returned. * By default, only the top **100 rows** are returned. diff --git a/docs/5.x/tracking-javascript-guide.md b/docs/5.x/tracking-javascript-guide.md index 142bbd308..8f1e547cc 100644 --- a/docs/5.x/tracking-javascript-guide.md +++ b/docs/5.x/tracking-javascript-guide.md @@ -348,7 +348,7 @@ _paq.push(['trackPageView']); ### Tracking a Custom Dimension for one specific action only -It is possible to set a Custom Dimension for one specific action only. If you want to track a Page view, you can send one or more specific Custom Dimension values along with this tracking request as follows: +It is possible to set a Custom Dimension for one specific action at the visit scope level only. If you want to track a Page view, you can send one or more specific Custom Dimension values along with this tracking request as follows: `_paq.push(['trackPageView', pageTitle, {dimension1: 'DimensionValue'}]);`