Class: Rudder::Analytics::Client

Inherits:
Object
  • Object
show all
Includes:
Logging, Utils
Defined in:
lib/rudder/analytics/client.rb

Constant Summary

Constants included from Utils

Utils::UTC_OFFSET_WITHOUT_COLON, Utils::UTC_OFFSET_WITH_COLON

Instance Method Summary collapse

Methods included from Logging

included, #logger

Methods included from Utils

#check_string, #date_in_iso8601, #datetime_in_iso8601, #formatted_offset, #isoify_dates, #isoify_dates!, #seconds_to_utc_offset, #stringify_keys, #symbolize_keys, #symbolize_keys!, #time_in_iso8601, #uid

Constructor Details

#initialize(opts = {}) ⇒ Client

Returns a new instance of Client.

Parameters:

  • opts (Hash) (defaults to: {})

Options Hash (opts):

  • :write_key (String)

    Your project’s write_key

  • :data_plane_url (String)

    Your data plane URL

  • :max_queue_size (FixNum)

    Maximum number of calls to be remain queued.

  • :on_error (Proc)

    Handles error calls from the API.



27
28
29
30
31
32
33
34
# File 'lib/rudder/analytics/client.rb', line 27

def initialize(opts = {})
  @config = Configuration.new(opts)
  @queue = Queue.new
  @worker_mutex = Mutex.new
  @worker = Worker.new(@queue, @config)
  @worker_thread = nil
  at_exit { @worker_thread && @worker_thread[:should_exit] = true }
end

Instance Method Details

#alias(attrs) ⇒ Object

Aliases a user from one id to another

Parameters:

  • attrs (Hash)

Options Hash (attrs):

  • :previous_id (String)

    The ID to alias from

  • :anonymous_id (String)

    ID for a user when you don’t know who they are yet. (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :context (Hash) — default: {}
  • :integrations (Hash)

    What integrations this event goes to (optional)

  • :message_id (String)

    ID that uniquely identifies a message across the API. (optional)

  • :timestamp (Time)

    When the event occurred (optional)

  • :user_id (String)

    The ID for this user in your database (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :options (Hash)

    Options such as user traits (optional)

See Also:



97
98
99
100
# File 'lib/rudder/analytics/client.rb', line 97

def alias(attrs)
  symbolize_keys! attrs
  enqueue(FieldParser.parse_for_alias(attrs))
end

#flushObject

Synchronously waits until the worker has flushed the queue.

Use only for scripts which are not long-running, and will specifically exit



40
41
42
43
44
45
# File 'lib/rudder/analytics/client.rb', line 40

def flush
  while !@queue.empty? || @worker.is_requesting?
    ensure_worker_running
    sleep(0.1)
  end
end

#group(attrs) ⇒ Object

Associates a user identity with a group.

Parameters:

  • attrs (Hash)

Options Hash (attrs):

  • :group_id (String)

    The ID of the group

  • :traits (Hash)

    User traits (optional)

  • :anonymous_id (String)

    ID for a user when you don’t know who they are yet. (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :context (Hash) — default: {}
  • :integrations (Hash)

    What integrations this event goes to (optional)

  • :message_id (String)

    ID that uniquely identifies a message across the API. (optional)

  • :timestamp (Time)

    When the event occurred (optional)

  • :user_id (String)

    The ID for this user in your database (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :options (Hash)

    Options such as user traits (optional)

See Also:



111
112
113
114
# File 'lib/rudder/analytics/client.rb', line 111

def group(attrs)
  symbolize_keys! attrs
  enqueue(FieldParser.parse_for_group(attrs))
end

#identify(attrs) ⇒ Object

Identifies a user

Parameters:

  • attrs (Hash)

Options Hash (attrs):

  • :traits (Hash)

    User traits (optional)

  • :anonymous_id (String)

    ID for a user when you don’t know who they are yet. (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :context (Hash) — default: {}
  • :integrations (Hash)

    What integrations this event goes to (optional)

  • :message_id (String)

    ID that uniquely identifies a message across the API. (optional)

  • :timestamp (Time)

    When the event occurred (optional)

  • :user_id (String)

    The ID for this user in your database (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :options (Hash)

    Options such as user traits (optional)

See Also:



83
84
85
86
87
# File 'lib/rudder/analytics/client.rb', line 83

def identify(attrs)
  # printf("\nInside Identify \n")
  symbolize_keys! attrs
  enqueue(FieldParser.parse_for_identify(attrs))
end

#page(attrs) ⇒ Object

Records a page view

Parameters:

  • attrs (Hash)

Options Hash (attrs):

  • :name (String)

    Name of the page

  • :properties (Hash)

    Page properties (optional)

  • :anonymous_id (String)

    ID for a user when you don’t know who they are yet. (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :context (Hash) — default: {}
  • :integrations (Hash)

    What integrations this event goes to (optional)

  • :message_id (String)

    ID that uniquely identifies a message across the API. (optional)

  • :timestamp (Time)

    When the event occurred (optional)

  • :user_id (String)

    The ID for this user in your database (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :options (Hash)

    Options such as user traits (optional)

See Also:



125
126
127
128
# File 'lib/rudder/analytics/client.rb', line 125

def page(attrs)
  symbolize_keys! attrs
  enqueue(FieldParser.parse_for_page(attrs))
end

#queued_messagesFixnum

Returns number of messages in the queue.

Returns:

  • (Fixnum)

    number of messages in the queue



144
145
146
# File 'lib/rudder/analytics/client.rb', line 144

def queued_messages
  @queue.length
end

#screen(attrs) ⇒ Object

Records a screen view (for a mobile app)

Parameters:

  • attrs (Hash)

Options Hash (attrs):

  • :name (String)

    Name of the screen

  • :properties (Hash)

    Screen properties (optional)

  • :category (String)

    The screen category (optional)

  • :anonymous_id (String)

    ID for a user when you don’t know who they are yet. (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :context (Hash) — default: {}
  • :integrations (Hash)

    What integrations this event goes to (optional)

  • :message_id (String)

    ID that uniquely identifies a message across the API. (optional)

  • :timestamp (Time)

    When the event occurred (optional)

  • :user_id (String)

    The ID for this user in your database (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :options (Hash)

    Options such as user traits (optional)



138
139
140
141
# File 'lib/rudder/analytics/client.rb', line 138

def screen(attrs)
  symbolize_keys! attrs
  enqueue(FieldParser.parse_for_screen(attrs))
end

#test_queueObject



148
149
150
151
152
# File 'lib/rudder/analytics/client.rb', line 148

def test_queue
  raise 'Test queue only available when setting :test to true.' unless @config.test

  @test_queue ||= TestQueue.new
end

#track(attrs) ⇒ Object

Tracks an event

Parameters:

  • attrs (Hash)

Options Hash (attrs):

  • :event (String)

    Event name

  • :properties (Hash)

    Event properties (optional)

  • :anonymous_id (String)

    ID for a user when you don’t know who they are yet. (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :context (Hash) — default: {}
  • :integrations (Hash)

    What integrations this event goes to (optional)

  • :message_id (String)

    ID that uniquely identifies a message across the API. (optional)

  • :timestamp (Time)

    When the event occurred (optional)

  • :user_id (String)

    The ID for this user in your database (optional but you must provide either an ‘anonymous_id` or `user_id`)

  • :options (Hash)

    Options such as user traits (optional)

See Also:



70
71
72
73
# File 'lib/rudder/analytics/client.rb', line 70

def track(attrs)
  symbolize_keys! attrs
  enqueue(FieldParser.parse_for_track(attrs))
end