diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-09-08 00:12:22 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-09-08 00:12:22 +0000 |
commit | 1a35cd021a02aec1cf98dac843359837e3a1affd (patch) | |
tree | 87e6ce1841d4329fae46b9a9f8dba6f0eaf0619b /doc/development | |
parent | c12e8312f6021bc8b2d9aa796fde9abc428b6a74 (diff) | |
download | gitlab-ce-1a35cd021a02aec1cf98dac843359837e3a1affd.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development')
-rw-r--r-- | doc/development/service_ping/implement.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/service_ping/implement.md b/doc/development/service_ping/implement.md index 4ef58fefcb9..3d88c2a6718 100644 --- a/doc/development/service_ping/implement.md +++ b/doc/development/service_ping/implement.md @@ -382,7 +382,7 @@ Implemented using Redis methods [PFADD](https://redis.io/commands/pfadd/) and [P - `controller_actions`: the controller actions to track. - `name`: the event name. - `conditions`: optional custom conditions. Uses the same format as Rails callbacks. - - `destinations`: optional list of destinations. Currently supports `:redis_hll` and `:snowplow`. Default: [:redis_hll]. + - `destinations`: optional list of destinations. Currently supports `:redis_hll` and `:snowplow`. Default: `:redis_hll`. - `&block`: optional block that computes and returns the `custom_id` that we want to track. This overrides the `visitor_id`. Example: |