MCPcopy Create free account
hub / github.com/docker/model-test / LogEntry

Struct LogEntry

services/request_logger.go:18–25  ·  view source on GitHub ↗

LogEntry represents a single request/response log entry

Source from the content-addressed store, hash-verified

16
17// LogEntry represents a single request/response log entry
18type LogEntry struct {
19 Timestamp string `json:"timestamp"`
20 TestCase string `json:"test_case"`
21 Iteration int `json:"iteration"`
22 Request LogRequest `json:"request"`
23 Response LogResponse `json:"response"`
24 Error string `json:"error,omitempty"`
25}
26
27// LogRequest represents the request part of a log entry
28type LogRequest struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected