Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler struct { // Receiver receives incoming HTTP requests Receiver *kncloudevents.HttpMessageReceiver // Sender sends requests to the broker Sender *kncloudevents.HttpMessageSender // Defaults sets default values to incoming events Defaulter client.EventDefaulter // Reporter reports stats of status code and dispatch time Reporter StatsReporter Logger *zap.Logger // contains filtered or unexported fields }
type ReportArgs ¶
type ReportArgs struct {
// contains filtered or unexported fields
}
type StatsReporter ¶
type StatsReporter interface { ReportEventCount(args *ReportArgs, responseCode int) error ReportEventDispatchTime(args *ReportArgs, responseCode int, d time.Duration) error }
StatsReporter defines the interface for sending ingress metrics.
func NewStatsReporter ¶
func NewStatsReporter(container, uniqueName string) StatsReporter
NewStatsReporter creates a reporter that collects and reports ingress metrics.
Click to show internal directories.
Click to hide internal directories.