2022-05-03 20:03:37 +00:00
|
|
|
// Copyright (c) 2019, Drone Plugins project authors
|
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
|
2019-10-11 18:36:49 +00:00
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-12-20 20:47:50 +00:00
|
|
|
package trace
|
2019-10-11 18:36:49 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"net/http/httptrace"
|
|
|
|
"net/textproto"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2019-12-20 20:47:50 +00:00
|
|
|
// HTTP uses httptrace to log all network activity for HTTP requests.
|
|
|
|
func HTTP(ctx context.Context) context.Context {
|
2019-10-11 18:36:49 +00:00
|
|
|
return httptrace.WithClientTrace(ctx, &httptrace.ClientTrace{
|
|
|
|
GetConn: func(hostPort string) {
|
|
|
|
logrus.WithField("host-port", hostPort).Trace("ClientTrace.GetConn")
|
|
|
|
},
|
|
|
|
|
|
|
|
GotConn: func(connInfo httptrace.GotConnInfo) {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"local-address": connInfo.Conn.LocalAddr(),
|
|
|
|
"remote-address": connInfo.Conn.RemoteAddr(),
|
|
|
|
"reused": connInfo.Reused,
|
|
|
|
"was-idle": connInfo.WasIdle,
|
|
|
|
"idle-time": connInfo.IdleTime,
|
|
|
|
}).Trace("ClientTrace.GoConn")
|
|
|
|
},
|
|
|
|
|
|
|
|
PutIdleConn: func(err error) {
|
|
|
|
logrus.WithField("error", err).Trace("ClientTrace.GoConn")
|
|
|
|
},
|
|
|
|
|
|
|
|
GotFirstResponseByte: func() {
|
|
|
|
logrus.Trace("ClientTrace.GotFirstResponseByte")
|
|
|
|
},
|
|
|
|
|
|
|
|
Got100Continue: func() {
|
|
|
|
logrus.Trace("ClientTrace.Got100Continue")
|
|
|
|
},
|
|
|
|
|
|
|
|
Got1xxResponse: func(code int, header textproto.MIMEHeader) error {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"code": code,
|
|
|
|
"header": header,
|
|
|
|
}).Trace("ClientTrace.Got1xxxResponse")
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
|
|
|
|
DNSStart: func(dnsInfo httptrace.DNSStartInfo) {
|
|
|
|
logrus.WithField("host", dnsInfo.Host).Trace("ClientTrace.DNSStart")
|
|
|
|
},
|
|
|
|
|
|
|
|
DNSDone: func(dnsInfo httptrace.DNSDoneInfo) {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"addresses": dnsInfo.Addrs,
|
|
|
|
"error": dnsInfo.Err,
|
|
|
|
"coalesced": dnsInfo.Coalesced,
|
|
|
|
}).Trace("ClientTrace.DNSDone")
|
|
|
|
},
|
|
|
|
|
|
|
|
ConnectStart: func(network, addr string) {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"network": network,
|
|
|
|
"address": addr,
|
|
|
|
}).Trace("ClientTrace.ConnectStart")
|
|
|
|
},
|
|
|
|
|
|
|
|
ConnectDone: func(network, addr string, err error) {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"network": network,
|
|
|
|
"address": addr,
|
|
|
|
"error": err,
|
|
|
|
}).Trace("ClientTrace.ConnectDone")
|
|
|
|
},
|
|
|
|
|
|
|
|
TLSHandshakeStart: func() {
|
|
|
|
logrus.Trace("ClientTrace.TLSHandshakeStart")
|
|
|
|
},
|
|
|
|
|
|
|
|
TLSHandshakeDone: func(cs tls.ConnectionState, err error) {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
2020-09-10 20:06:29 +00:00
|
|
|
"version": cs.Version,
|
|
|
|
"handshake-complete": cs.HandshakeComplete,
|
|
|
|
"did-resume": cs.DidResume,
|
|
|
|
"cipher-suite": cs.CipherSuite,
|
|
|
|
"negotiated-protocol": cs.NegotiatedProtocol,
|
|
|
|
"server-name": cs.ServerName,
|
|
|
|
"error": err,
|
2019-10-11 18:36:49 +00:00
|
|
|
}).Trace("ClientTrace.TLSHandshakeDone")
|
|
|
|
},
|
|
|
|
|
|
|
|
WroteHeaderField: func(key string, value []string) {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"key": key,
|
|
|
|
"values": value,
|
|
|
|
}).Trace("ClientTrace.WroteHeaderField")
|
|
|
|
},
|
|
|
|
|
|
|
|
WroteHeaders: func() {
|
|
|
|
logrus.Trace("ClientTrace.WroteHeaders")
|
|
|
|
},
|
|
|
|
|
|
|
|
Wait100Continue: func() {
|
|
|
|
logrus.Trace("ClientTrace.Wait100Continue")
|
|
|
|
},
|
|
|
|
|
|
|
|
WroteRequest: func(reqInfo httptrace.WroteRequestInfo) {
|
|
|
|
logrus.WithField("error", reqInfo.Err).Trace("ClientTrace.WroteRequest")
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|