Skip to content

Commit 26025eb

Browse files
committed
Adding more metrics likes topic tags
1 parent 76bf8ac commit 26025eb

File tree

4 files changed

+77
-28
lines changed

4 files changed

+77
-28
lines changed

README.md

+2-16
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ Emits user events to segment.io
77
* User identify
88
* User Track "Signed Up"
99
* User Track "Post Created"
10+
* User Track "Post Liked"
1011
* User Track "Topic Created"
12+
* User Track "Topic Tag Created"
1113
* User Page View
1214

1315
# Usage
@@ -20,22 +22,6 @@ Watch Tutorial Video: https://youtu.be/AKR3ki9Kj38
2022

2123
In segment.io you will need a `ruby` source to receive the incoming events.
2224

23-
To install using docker, add the following to your `app.yml` in the plugins section:
24-
25-
env:
26-
SEGMENT_IO_KEY: xxx
27-
hooks:
28-
after_code:
29-
- exec:
30-
cd: $home/plugins
31-
cmd:
32-
- git clone https://github.com/kylewelsby/discourse-segment-io-plugin.git
33-
34-
and rebuild your docker via
35-
36-
cd /var/discourse
37-
./launcher rebuild app
38-
3925
# Contributing
4026

4127
Please see [CONTRIBUTING.md](/CONTRIBUTING.md).

config/locales/server.en.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
en:
2+
site_settings:
3+
segment_io_enabled: "Is Segment IO enabled?"
4+
segment_io_write_key: 'What is the segment io write key?'

config/settings.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
plugins:
2+
segment_io_enabled:
3+
default: false
4+
client: false
5+
segment_io_write_key:
6+
default: ''
7+
client: false

plugin.rb

+64-12
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,28 @@
66
gem 'commander', '4.4.0' # , require: false # for analytics-ruby
77
gem 'analytics-ruby', '2.2.2', require: false # 'segment/analytics'
88

9+
enabled_site_setting :segment_io_enabled
10+
911
after_initialize do
1012
require 'segment/analytics'
1113

12-
SEGMENT_IO_KEY = ENV['SEGMENT_IO_KEY']
13-
unless SEGMENT_IO_KEY
14-
raise StandardError, 'Segment.io WriteKey must be defined as an environment variable `export SEGMENT_IO_KEY={YOUR_KEY_HERE}`'
14+
class Analytics
15+
def self.method_missing(method, *args)
16+
return unless SiteSetting.segment_io_enabled
17+
analytics = Segment::Analytics.new(
18+
write_key: SiteSetting.segment_io_write_key
19+
)
20+
super(method, *args) unless analytics.respond_to?(method)
21+
analytics.send(method, *args)
22+
analytics.flush
23+
end
1524
end
16-
Analytics = Segment::Analytics.new(
17-
write_key: SEGMENT_IO_KEY,
18-
on_error: proc { |_status, msg| print msg }
19-
)
2025

2126
require_dependency 'jobs/base'
2227
module ::Jobs
2328
class EmitSegmentUserIdentify < Jobs::Base
2429
def execute(args)
30+
return unless SiteSetting.segment_io_enabled?
2531
user = User.find_by_id(args[:user_id])
2632
user.emit_segment_user_identify if user
2733
end
@@ -36,14 +42,16 @@ def execute(args)
3642
class ::User
3743
after_create :emit_segment_user_identify
3844
after_create :emit_segment_user_created
45+
3946
def emit_segment_user_identify
4047
Analytics.identify(
4148
user_id: id,
4249
traits: {
4350
name: name,
4451
username: username,
4552
email: email,
46-
created_at: created_at
53+
created_at: created_at,
54+
internal: email.ends_with?('@pagerduty.com')
4755
},
4856
context: {
4957
ip: ip_address
@@ -62,6 +70,14 @@ def emit_segment_user_created
6270
require_dependency 'application_controller'
6371
class ::ApplicationController
6472
before_filter :emit_segment_user_tracker
73+
74+
SEGMENT_IO_EXCLUDES = {
75+
'stylesheets' => :all,
76+
'user_avatars' => :all,
77+
'about' => ['live_post_counts'],
78+
'topics' => ['timings']
79+
}.freeze
80+
6581
def emit_segment_user_tracker
6682
if current_user && !segment_common_controller_actions?
6783
Analytics.page(
@@ -79,7 +95,9 @@ def emit_segment_user_tracker
7995
end
8096

8197
def segment_common_controller_actions?
82-
controller_name == 'stylesheets' || controller_name == 'user_avatars' || (controller_name == 'about' && action_name == 'live_post_counts')
98+
SEGMENT_IO_EXCLUDES.keys.include?(controller_name) &&
99+
(SEGMENT_IO_EXCLUDES[controller_name] == :all ||
100+
SEGMENT_IO_EXCLUDES[controller_name].include?(action_name) )
83101
end
84102
end
85103

@@ -92,9 +110,11 @@ def emit_segment_post_created
92110
user_id: user_id,
93111
event: 'Post Created',
94112
properties: {
95-
slug: topic.slug,
96-
title: topic.title,
97-
url: topic.url
113+
topic_id: topic_id,
114+
post_number: post_number,
115+
created_at: created_at,
116+
since_topic_created: (created_at - topic.created_at).to_i,
117+
reply_to_post_number: reply_to_post_number
98118
}
99119
)
100120
end
@@ -116,4 +136,36 @@ def emit_segment_topic_created
116136
)
117137
end
118138
end
139+
140+
require_dependency 'topic_tag'
141+
class ::TopicTag
142+
after_create :emit_segment_topic_tagged
143+
144+
def emit_segment_topic_tagged
145+
Analytics.track(
146+
anonymous_id: -1,
147+
event: 'Topic Tag Created',
148+
properties: {
149+
topic_id: topic_id,
150+
tag_name: tag.name
151+
}
152+
)
153+
end
154+
end
155+
156+
require_dependency 'user_action'
157+
class ::UserAction
158+
after_create :emit_segment_post_liked, if: -> { self.action_type == UserAction::LIKE }
159+
160+
def emit_segment_post_liked
161+
Analytics.track(
162+
user_id: user_id,
163+
event: 'Post Liked',
164+
properties: {
165+
post_id: target_post_id,
166+
topic_id: target_topic_id
167+
}
168+
)
169+
end
170+
end
119171
end

0 commit comments

Comments
 (0)