-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gill developer docs #801
Gill developer docs #801
Conversation
add missing goal parameter: `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.
add 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.
… in tracking javascript guide.md Add "at the visit scope level only" under Tracking a custom dimension for one specific action only in tracking javascript guide.md (KB-870)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good. Tested locally and everything appears to display correctly 👍
* **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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just for completeness: There are actually three possible values that can be provided here:
format_metrics=0
: metrics will not be formatted at all. Percent values are returned as rates - This might be best used if the numbers should be used for further processingformat_metrics=1
: All metrics are returned formatted (this also includes appending percent or money signs) - This might be best used if the data should be used for direct presentationformat_metrics=bc
: In that case only percent values are formatted, while all other values aren't. This behavior is deprecated and only still exists, as the Matomo UI expects it in some places. This is also the default behavior if nothing is provided. At some point this option will be removed andformat_metrics=0
will become the new default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sgiehl Thank you. I will add this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apologies @gillnd . I guess I should have waited to merge your PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@snake14 no worries at all, thanks for all your assistance. I've added sgiehl's comments in a new pull request 801
Description:
Gillian Douglas made 3 changes
Review