Module: Datadog::Kit::AppSec::Events
- Defined in:
- lib/datadog/kit/appsec/events.rb
Overview
Tracking events
Constant Summary collapse
- LOGIN_SUCCESS_EVENT =
'users.login.success'
- LOGIN_FAILURE_EVENT =
'users.login.failure'
- SIGNUP_EVENT =
'users.signup'
Class Method Summary collapse
-
.track(event, trace = nil, span = nil, **others) ⇒ Object
Attach custom event information to the trace.
-
.track_login_failure(trace = nil, span = nil, user_exists:, user_id: nil, **others) ⇒ Object
Attach login failure event information to the trace.
-
.track_login_success(trace = nil, span = nil, user:, **others) ⇒ Object
Attach login success event information to the trace.
-
.track_signup(trace = nil, span = nil, user:, **others) ⇒ Object
Attach signup event information to the trace.
Class Method Details
.track(event, trace = nil, span = nil, **others) ⇒ Object
Attach custom event information to the trace
This method is experimental and may change in the future.
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/datadog/kit/appsec/events.rb', line 106 def track(event, trace = nil, span = nil, **others) if trace && span check_trace_span_integrity(trace, span) span.set_tag("appsec.events.#{event}.track", 'true') span.set_tag("_dd.appsec.events.#{event}.sdk", 'true') others.each do |k, v| raise ArgumentError, 'key cannot be :track' if k.to_sym == :track span.set_tag("appsec.events.#{event}.#{k}", v) unless v.nil? end trace.keep! else set_trace_and_span_context('track', trace, span) do |active_trace, active_span| active_span.set_tag("appsec.events.#{event}.track", 'true') active_span.set_tag("_dd.appsec.events.#{event}.sdk", 'true') others.each do |k, v| raise ArgumentError, 'key cannot be :track' if k.to_sym == :track active_span.set_tag("appsec.events.#{event}.#{k}", v) unless v.nil? end active_trace.keep! end end end |
.track_login_failure(trace = nil, span = nil, user_exists:, user_id: nil, **others) ⇒ Object
Attach login failure event information to the trace
This method is experimental and may change in the future.
56 57 58 59 60 61 62 63 |
# File 'lib/datadog/kit/appsec/events.rb', line 56 def track_login_failure(trace = nil, span = nil, user_exists:, user_id: nil, **others) set_trace_and_span_context('track_login_failure', trace, span) do |active_trace, active_span| track(LOGIN_FAILURE_EVENT, active_trace, active_span, **others) active_span.set_tag('appsec.events.users.login.failure.usr.id', user_id) if user_id active_span.set_tag('appsec.events.users.login.failure.usr.exists', user_exists) end end |
.track_login_success(trace = nil, span = nil, user:, **others) ⇒ Object
Attach login success event information to the trace
This method is experimental and may change in the future.
29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/datadog/kit/appsec/events.rb', line 29 def track_login_success(trace = nil, span = nil, user:, **others) set_trace_and_span_context('track_login_success', trace, span) do |active_trace, active_span| = user.dup user_id = .delete(:id) raise ArgumentError, 'missing required key: :user => { :id }' if user_id.nil? track(LOGIN_SUCCESS_EVENT, active_trace, active_span, **others) Kit::Identity.set_user(active_trace, active_span, id: user_id, **) end end |
.track_signup(trace = nil, span = nil, user:, **others) ⇒ Object
Attach signup event information to the trace
This method is experimental and may change in the future.
79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/datadog/kit/appsec/events.rb', line 79 def track_signup(trace = nil, span = nil, user:, **others) set_trace_and_span_context('track_signup', trace, span) do |active_trace, active_span| = user.dup user_id = .delete(:id) raise ArgumentError, 'missing required key: :user => { :id }' if user_id.nil? track(SIGNUP_EVENT, active_trace, active_span, **others) Kit::Identity.set_user(trace, id: user_id, **) end end |