Skip to content
/ xsyslog Public

the client and server implementations of syslog

License

Notifications You must be signed in to change notification settings

xyu-io/xsyslog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xsyslog

the client and server implementations of syslog

client demo

// 创建发送者实例
	sysCli, err := NewSyslogClient(Config{
		Network:       "udp",
		Address:       "127.0.0.1:514",
		AppName:       "syslog",
		Formatter:     RFC5424Formatter,
		Level:         logrus.InfoLevel,
		DisableOutput: true,
	})
	if err != nil {
		panic(err)
		return
	}

	sysCli.SendWarn("waring! waring! waring!")

server demo

	ctx, _ := context.WithTimeout(context.Background(), time.Second*10)
	srv := NewSyslogServer(514, logrus.New(), ctx)

	msg, err := srv.RunSyslogReceiver()
	if err != nil {
		return
	}

	go func() {
		for {
			select {
			case e := <-msg:
				fmt.Printf("syslog recieved >> %+v \n", e)
			}
		}
	}()

About

the client and server implementations of syslog

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages