Documentation ¶
Index ¶
- Variables
- type Config
- type FreezeTracker
- type HubSpotConfig
- type HubSpotEvent
- type HubSpotEvents
- type LimitRequestInfo
- type Service
- func (service *Service) Close() error
- func (service *Service) PageVisitEvent(pageName string, userID uuid.UUID, email string)
- func (service *Service) Run(ctx context.Context) error
- func (service *Service) TrackAccessGrantCreated(userID uuid.UUID, email string)
- func (service *Service) TrackAccountFreezeWarning(userID uuid.UUID, email string)
- func (service *Service) TrackAccountFrozen(userID uuid.UUID, email string)
- func (service *Service) TrackAccountUnfrozen(userID uuid.UUID, email string)
- func (service *Service) TrackAccountUnwarned(userID uuid.UUID, email string)
- func (service *Service) TrackAccountVerified(userID uuid.UUID, email string)
- func (service *Service) TrackCreateUser(fields TrackCreateUserFields)
- func (service *Service) TrackCreditCardAdded(userID uuid.UUID, email string)
- func (service *Service) TrackErrorEvent(userID uuid.UUID, email, source, uiType string)
- func (service *Service) TrackEvent(eventName string, userID uuid.UUID, email, uiType string, ...)
- func (service *Service) TrackExpiredCreditNeedsRemoval(userID uuid.UUID, customerID, packagePlan string)
- func (service *Service) TrackExpiredCreditRemoved(userID uuid.UUID, customerID, packagePlan string)
- func (service *Service) TrackInviteLinkClicked(inviter, invitee string)
- func (service *Service) TrackInviteLinkSignup(inviter, invitee string)
- func (service *Service) TrackLargeUnpaidInvoice(invID string, userID uuid.UUID, email string)
- func (service *Service) TrackLegalHoldUnpaidInvoice(invID string, userID uuid.UUID, email string)
- func (service *Service) TrackLinkEvent(eventName string, userID uuid.UUID, email, link, uiType string)
- func (service *Service) TrackProjectCreated(userID uuid.UUID, email string, projectID uuid.UUID, currentProjectCount int)
- func (service *Service) TrackProjectLimitError(userID uuid.UUID, email string)
- func (service *Service) TrackProjectMemberAddition(userID uuid.UUID, email string)
- func (service *Service) TrackProjectMemberDeletion(userID uuid.UUID, email string)
- func (service *Service) TrackRequestLimitIncrease(userID uuid.UUID, email string, info LimitRequestInfo)
- func (service *Service) TrackSignedIn(userID uuid.UUID, email string)
- func (service *Service) TrackStorjTokenAdded(userID uuid.UUID, email string)
- func (service *Service) TrackStorjscanUnpaidInvoice(invID string, userID uuid.UUID, email string)
- func (service *Service) TrackViolationFrozenUnpaidInvoice(invID string, userID uuid.UUID, email string)
- type TokenData
- type TrackCreateUserFields
- type UserType
Constants ¶
This section is empty.
Variables ¶
var ( // Error is the default error class the analytics package. Error = errs.Class("analytics service") )
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { SegmentWriteKey string `help:"segment write key" default:""` Enabled bool `help:"enable analytics reporting" default:"false"` HubSpot HubSpotConfig }
Config is a configuration struct for analytics Service.
type FreezeTracker ¶ added in v1.78.1
type FreezeTracker interface { // TrackAccountFrozen sends an account frozen event to Segment. TrackAccountFrozen(userID uuid.UUID, email string) // TrackAccountUnfrozen sends an account unfrozen event to Segment. TrackAccountUnfrozen(userID uuid.UUID, email string) // TrackAccountUnwarned sends an account unwarned event to Segment. TrackAccountUnwarned(userID uuid.UUID, email string) // TrackAccountFreezeWarning sends an account freeze warning event to Segment. TrackAccountFreezeWarning(userID uuid.UUID, email string) // TrackLargeUnpaidInvoice sends an event to Segment indicating that a user has not paid a large invoice. TrackLargeUnpaidInvoice(invID string, userID uuid.UUID, email string) // TrackViolationFrozenUnpaidInvoice sends an event to Segment indicating that a user has not paid an invoice // and has been frozen due to violating ToS. TrackViolationFrozenUnpaidInvoice(invID string, userID uuid.UUID, email string) // TrackStorjscanUnpaidInvoice sends an event to Segment indicating that a user has not paid an invoice, but has storjscan transaction history. TrackStorjscanUnpaidInvoice(invID string, userID uuid.UUID, email string) }
FreezeTracker is an interface for account freeze event tracking methods.
type HubSpotConfig ¶ added in v1.45.2
type HubSpotConfig struct { RefreshToken string `help:"hubspot refresh token" default:""` TokenAPI string `help:"hubspot token refresh API" default:"https://api.hubapi.com/oauth/v1/token"` ClientID string `help:"hubspot client ID" default:""` ClientSecret string `help:"hubspot client secret" default:""` ChannelSize int `help:"the number of events that can be in the queue before dropping" default:"1000"` ConcurrentSends int `help:"the number of concurrent api requests that can be made" default:"4"` DefaultTimeout time.Duration `help:"the default timeout for the hubspot http client" default:"10s"` }
HubSpotConfig is a configuration struct for Concurrent Sending of Events.
type HubSpotEvent ¶ added in v1.45.2
HubSpotEvent is a configuration struct for sending API request to HubSpot.
type HubSpotEvents ¶ added in v1.45.2
type HubSpotEvents struct {
// contains filtered or unexported fields
}
HubSpotEvents is a configuration struct for sending Events data to HubSpot.
func NewHubSpotEvents ¶ added in v1.45.2
func NewHubSpotEvents(log *zap.Logger, config HubSpotConfig, satelliteName string) *HubSpotEvents
NewHubSpotEvents for sending user events to HubSpot.
func (*HubSpotEvents) EnqueueCreateUser ¶ added in v1.45.2
func (q *HubSpotEvents) EnqueueCreateUser(fields TrackCreateUserFields)
EnqueueCreateUser for creating user in HubSpot.
func (*HubSpotEvents) Handle ¶ added in v1.45.2
func (q *HubSpotEvents) Handle(ctx context.Context, events []HubSpotEvent) (err error)
Handle for handle the HubSpot API requests.
type LimitRequestInfo ¶ added in v1.88.2
type LimitRequestInfo struct { ProjectName string LimitType string CurrentLimit string DesiredLimit string }
LimitRequestInfo holds data needed to request limit increase.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service for sending analytics.
architecture: Service
func NewService ¶
NewService creates new service for creating sending analytics.
func (*Service) PageVisitEvent ¶ added in v1.58.1
PageVisitEvent sends a page visit event associated with user ID to Segment. It is used for tracking occurrences of client-side events.
func (*Service) TrackAccessGrantCreated ¶ added in v1.27.0
TrackAccessGrantCreated sends an "Access Grant Created" event to Segment.
func (*Service) TrackAccountFreezeWarning ¶ added in v1.74.1
TrackAccountFreezeWarning sends an account freeze warning event to Segment.
func (*Service) TrackAccountFrozen ¶ added in v1.74.1
TrackAccountFrozen sends an account frozen event to Segment.
func (*Service) TrackAccountUnfrozen ¶ added in v1.75.2
TrackAccountUnfrozen sends an account unfrozen event to Segment.
func (*Service) TrackAccountUnwarned ¶ added in v1.76.1
TrackAccountUnwarned sends an account unwarned event to Segment.
func (*Service) TrackAccountVerified ¶ added in v1.27.2
TrackAccountVerified sends an "Account Verified" event to Segment.
func (*Service) TrackCreateUser ¶
func (service *Service) TrackCreateUser(fields TrackCreateUserFields)
TrackCreateUser sends an "Account Created" event to Segment.
func (*Service) TrackCreditCardAdded ¶ added in v1.55.1
TrackCreditCardAdded sends an "Credit Card Added" event to Segment.
func (*Service) TrackErrorEvent ¶ added in v1.70.1
TrackErrorEvent sends an arbitrary error event associated with user ID to Segment. It is used for tracking occurrences of client-side errors.
func (*Service) TrackEvent ¶ added in v1.27.0
func (service *Service) TrackEvent(eventName string, userID uuid.UUID, email, uiType string, customProps map[string]string)
TrackEvent sends an arbitrary event associated with user ID to Segment. It is used for tracking occurrences of client-side events.
func (*Service) TrackExpiredCreditNeedsRemoval ¶ added in v1.80.3
func (service *Service) TrackExpiredCreditNeedsRemoval(userID uuid.UUID, customerID, packagePlan string)
TrackExpiredCreditNeedsRemoval sends an "Expired Credit Needs Removal" event to Segment.
func (*Service) TrackExpiredCreditRemoved ¶ added in v1.80.3
TrackExpiredCreditRemoved sends an "Expired Credit Removed" event to Segment.
func (*Service) TrackInviteLinkClicked ¶ added in v1.89.2
TrackInviteLinkClicked sends an "Invite Link Clicked" event to Segment.
func (*Service) TrackInviteLinkSignup ¶ added in v1.89.2
TrackInviteLinkSignup sends an "Invite Link Signup" event to Segment.
func (*Service) TrackLargeUnpaidInvoice ¶ added in v1.74.1
TrackLargeUnpaidInvoice sends an event to Segment indicating that a user has not paid a large invoice.
func (*Service) TrackLegalHoldUnpaidInvoice ¶ added in v1.93.1
TrackLegalHoldUnpaidInvoice sends an event to Segment indicating that a user has not paid an invoice but is in legal hold.
func (*Service) TrackLinkEvent ¶ added in v1.27.2
func (service *Service) TrackLinkEvent(eventName string, userID uuid.UUID, email, link, uiType string)
TrackLinkEvent sends an arbitrary event and link associated with user ID to Segment. It is used for tracking occurrences of client-side events.
func (*Service) TrackProjectCreated ¶ added in v1.27.0
func (service *Service) TrackProjectCreated(userID uuid.UUID, email string, projectID uuid.UUID, currentProjectCount int)
TrackProjectCreated sends an "Project Created" event to Segment.
func (*Service) TrackProjectLimitError ¶ added in v1.58.1
TrackProjectLimitError sends an "Project Limit Error" event to Segment.
func (*Service) TrackProjectMemberAddition ¶ added in v1.69.1
TrackProjectMemberAddition sends an "Project Member Added" event to Segment.
func (*Service) TrackProjectMemberDeletion ¶ added in v1.69.1
TrackProjectMemberDeletion sends an "Project Member Deleted" event to Segment.
func (*Service) TrackRequestLimitIncrease ¶ added in v1.88.2
func (service *Service) TrackRequestLimitIncrease(userID uuid.UUID, email string, info LimitRequestInfo)
TrackRequestLimitIncrease sends a limit increase request to Segment.
func (*Service) TrackSignedIn ¶ added in v1.27.0
TrackSignedIn sends an "Signed In" event to Segment.
func (*Service) TrackStorjTokenAdded ¶ added in v1.62.1
TrackStorjTokenAdded sends an "Storj Token Added" event to Segment.
func (*Service) TrackStorjscanUnpaidInvoice ¶ added in v1.83.2
TrackStorjscanUnpaidInvoice sends an event to Segment indicating that a user has not paid an invoice, but has storjscan transaction history.
type TrackCreateUserFields ¶
type TrackCreateUserFields struct { ID uuid.UUID AnonymousID string FullName string Email string Type UserType EmployeeCount string CompanyName string StorageNeeds string JobTitle string HaveSalesContact bool OriginHeader string Referrer string HubspotUTK string UserAgent string SignupCaptcha *float64 }
TrackCreateUserFields contains input data for tracking a create user event.