Versions in this module Expand all Collapse all v1 v1.1.0 Jun 21, 2019 Changes in this version type Client + func (c *Client) Submit(post PostData) error v1.0.0 Apr 17, 2019 Changes in this version + func Current(stack stackTrace) + func Parse(trace []byte, stack stackTrace) + type Client struct + func New(appName, apiKey string) (c *Client, err error) + func (c *Client) Asynchronous(a bool) *Client + func (c *Client) Clone() *Client + func (c *Client) CreateError(message string) error + func (c *Client) CustomData(data interface{}) *Client + func (c *Client) CustomGroupingKeyFunction(getCustomGroupingKey func(error, PostData) string) *Client + func (c *Client) HandleError() error + func (c *Client) LogToStdOut(l bool) *Client + func (c *Client) Request(r *http.Request) *Client + func (c *Client) SendError(error error) error + func (c *Client) Silent(s bool) *Client + func (c *Client) Tags(tags []string) *Client + func (c *Client) User(u string) *Client + func (c *Client) Version(v string) *Client + type ClientData struct + ClientURL string + Name string + Version string + type Context struct + Identifier string + type DetailsData struct + Client ClientData + Context Context + Error ErrorData + GroupingKey *string + MachineName string + Request RequestData + Tags []string + User User + UserCustomData UserCustomData + Version string + type ErrorData struct + Message string + StackTrace StackTrace + type PostData struct + Details DetailsData + OccuredOn string + type RequestData struct + Form map[string]string + HTTPMethod string + Headers map[string]string + HostName string + IPAddress string + QueryString map[string]string + URL string + type StackTrace []StackTraceElement + func (s *StackTrace) AddEntry(lineNumber int, packageName, fileName, methodName string) + type StackTraceElement struct + FileName string + LineNumber int + MethodName string + PackageName string + type User struct + Identifier string + type UserCustomData interface