Documentation ¶
Overview ¶
Package remotelog is a plugin that enables log messages being sent via UDP to a central ELK stack for debugging. It is disabled by default and when enabled, additionally, logger.disableEvents=false in config.json needs to be set. The destination can be set via logger.remotelog.serverAddress. All events according to logger.level in config.json are sent.
Index ¶
Constants ¶
const (
// PluginName is the name of the remote log plugin.
PluginName = "RemoteLog"
)
Variables ¶
var Parameters = &ParametersDefinition{}
Parameters contains the configuration used by the remotelog plugin.
var ( // Plugin is the plugin instance of the remote plugin instance. Plugin *node.Plugin )
Functions ¶
This section is empty.
Types ¶
type ParametersDefinition ¶ added in v0.7.4
type ParametersDefinition struct { // RemoteLog defines the parameters to reach the remote logging server. RemoteLog struct { // ServerAddress defines the server address that will receive the logs. ServerAddress string `default:"metrics-01.devnet.shimmer.iota.cafe:5213" usage:"RemoteLog server address"` } `name:"remotelog"` }
ParametersDefinition contains the definition of the parameters used by the remotelog plugin.
type RemoteLoggerConn ¶ added in v0.2.0
type RemoteLoggerConn struct {
// contains filtered or unexported fields
}
RemoteLoggerConn is a wrapper for a connection to our RemoteLog server.
func (*RemoteLoggerConn) Send ¶ added in v0.2.0
func (r *RemoteLoggerConn) Send(msg interface{}) error
Send sends a message on the RemoteLoggers connection.
func (*RemoteLoggerConn) SendLogMsg ¶ added in v0.7.7
func (r *RemoteLoggerConn) SendLogMsg(level logger.Level, name, msg string)
SendLogMsg sends log message to the remote logger.