-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Added context.Context to most API methods for span propagation 2. Spans are added to the parent (from context) when an API is called 3. Simple cache metrics can be registered with cache.RegisterMetrics() Signed-off-by: Dave Tucker <[email protected]>
- Loading branch information
1 parent
c59dafc
commit 08f8620
Showing
19 changed files
with
660 additions
and
106 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
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,12 @@ | ||
FROM golang:1.16-alpine as base | ||
COPY . /src | ||
WORKDIR /src | ||
|
||
FROM base as stress | ||
RUN go install ./cmd/stress | ||
|
||
FROM base as print_schema | ||
RUN go install ./cmd/print_schema | ||
|
||
FROM base as modelgen | ||
RUN go install ./cmd/modelgen |
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
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
Oops, something went wrong.