-
Notifications
You must be signed in to change notification settings - Fork 932
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package wrapper | ||
|
||
import ( | ||
"code.cloudfoundry.org/cli/api/cloudcontroller" | ||
) | ||
|
||
// TODO | ||
// 1. do not overwrite headers if explicitly set | ||
// 2. headers should go on other clients (uaa/routing) as well (with same value) | ||
// 3. tests | ||
// 4. what to set span to? | ||
|
||
// TraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type TraceHeaderRequest struct { | ||
b3trace string | ||
b3span string | ||
connection cloudcontroller.Connection | ||
} | ||
|
||
// NewTraceHeaderRequest returns a pointer to a TraceHeaderRequest wrapper. | ||
func NewTraceHeaderRequest(trace, span string) *TraceHeaderRequest { | ||
return &TraceHeaderRequest{ | ||
b3trace: trace, | ||
b3span: span, | ||
} | ||
} | ||
|
||
// Add tracing headers | ||
func (t *TraceHeaderRequest) Make(request *cloudcontroller.Request, passedResponse *cloudcontroller.Response) error { | ||
request.Header.Add("X-B3-Traceid", t.b3trace) | ||
request.Header.Add("X-B3-Spanid", t.b3span) | ||
return t.connection.Make(request, passedResponse) | ||
} | ||
|
||
// Wrap sets the connection in the TraceHeaderRequest and returns itself. | ||
func (t *TraceHeaderRequest) Wrap(innerconnection cloudcontroller.Connection) cloudcontroller.Connection { | ||
t.connection = innerconnection | ||
return t | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters