remotelog

package
v0.8.18 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 27, 2022 License: Apache-2.0, BSD-2-Clause Imports: 21 Imported by: 0

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

View Source
const (
	// PluginName is the name of the remote log plugin.
	PluginName = "RemoteLog"
)

Variables

View Source
var Parameters = &ParametersDefinition{}

Parameters contains the configuration used by the remotelog plugin.

View Source
var (
	// Plugin is the plugin instance of the remote plugin instance.
	Plugin *node.Plugin
)

Functions

This section is empty.

Types

type ParametersDefinition

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

type RemoteLoggerConn struct {
	// contains filtered or unexported fields
}

RemoteLoggerConn is a wrapper for a connection to our RemoteLog server.

func (*RemoteLoggerConn) Send

func (r *RemoteLoggerConn) Send(msg interface{}) error

Send sends a message on the RemoteLoggers connection.

func (*RemoteLoggerConn) SendLogMsg

func (r *RemoteLoggerConn) SendLogMsg(level logger.Level, name, msg string)

SendLogMsg sends log message to the remote logger.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL