MCPcopy
hub / github.com/IBM/sarama / accessLogEntry

Struct accessLogEntry

examples/http_server/http_server.go:143–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143type accessLogEntry struct {
144 Method string `json:"method"`
145 Host string `json:"host"`
146 Path string `json:"path"`
147 IP string `json:"ip"`
148 ResponseTime float64 `json:"response_time"`
149
150 encoded []byte
151 err error
152}
153
154func (ale *accessLogEntry) ensureEncoded() {
155 if ale.encoded == nil && ale.err == nil {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected