本文整理匯總了Golang中doppler/sinkserver/sinkmanager.SinkManager.SendSyslogErrorToLoggregator方法的典型用法代碼示例。如果您正苦於以下問題:Golang SinkManager.SendSyslogErrorToLoggregator方法的具體用法?Golang SinkManager.SendSyslogErrorToLoggregator怎麽用?Golang SinkManager.SendSyslogErrorToLoggregator使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類doppler/sinkserver/sinkmanager.SinkManager
的用法示例。
在下文中一共展示了SinkManager.SendSyslogErrorToLoggregator方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
sinkManager.SendTo("myApp", env)
Eventually(func() []*events.Envelope { return sinkManager.LatestContainerMetrics("myApp") }).Should(ConsistOf(env))
})
})
Describe("SendSyslogErrorToLoggregator", func() {
It("listens and broadcasts error messages", func() {
sink := &channelSink{
appId: "myApp",
identifier: "myAppChan1",
done: make(chan struct{}),
}
sinkManager.RegisterSink(sink)
sinkManager.SendSyslogErrorToLoggregator("error msg", "myApp")
Eventually(sink.Received).Should(HaveLen(1))
errorMsg := sink.Received()[0]
Expect(string(errorMsg.GetLogMessage().GetMessage())).To(Equal("error msg"))
})
})
})
type channelSink struct {
sync.RWMutex
done chan struct{}
appId, identifier string
received []*events.Envelope
runCalled bool