Documentation
¶
Overview ¶
Package posthog contains posthog helper functions and utilities
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetPackageToPosthogProperties ¶
func GetPackageToPosthogProperties(header *http.Header) posthog.Properties
GetPackageToPosthogProperties can be used to parse out an http header and map the headers to posthog properties array
Types ¶
type Config ¶
type Config struct {
// Enabled is a flag to enable or disable PostHog
Enabled bool `json:"enabled" koanf:"enabled" default:"false"`
// APIKey is the PostHog API Key
APIKey string `json:"apiKey" koanf:"apiKey"`
// Host is the PostHog API Host
Host string `json:"host" koanf:"host" default:"https://app.posthog.com"`
}
Config is the configuration for PostHog
type PostHog ¶
type PostHog struct {
Identifier string
// contains filtered or unexported fields
}
func (*PostHog) Event ¶
func (p *PostHog) Event(eventName string, properties posthog.Properties)
Event is used to send an event to PostHog
func (*PostHog) Properties ¶ added in v0.4.2
func (p *PostHog) Properties(id, obj string, properties posthog.Properties)
Properties sets generic properties
Click to show internal directories.
Click to hide internal directories.