Documentation
¶
Overview ¶
Package nrlogxi supports https://github.com/mgutz/logxi.
Wrap your logxi Logger using nrlogxi.New to send agent log messages through logxi.
Example ¶
package main
import (
log "github.com/mgutz/logxi/v1"
newrelic "github.com/newrelic/go-agent"
nrlogxi "github.com/newrelic/go-agent/_integrations/nrlogxi/v1"
)
func main() {
cfg := newrelic.NewConfig("Example App", "__YOUR_NEWRELIC_LICENSE_KEY__")
// Create a new logxi logger:
l := log.New("newrelic")
l.SetLevel(log.LevelInfo)
// Use nrlogxi to register the logger with the agent:
cfg.Logger = nrlogxi.New(l)
newrelic.NewApplication(cfg)
}
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.