-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WithTraceContext replaces context instead of appending
- Loading branch information
Showing
4 changed files
with
44 additions
and
17 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
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 |
---|---|---|
@@ -1,11 +1,36 @@ | ||
module github.com/riid/messenger-apm | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/riid/messenger v0.0.0-20220114175347-af9da6925871 | ||
github.com/riid/messenger v0.0.0-20220117162302-234459211f7b | ||
go.elastic.co/apm v1.15.0 | ||
go.elastic.co/apm/module/apmhttp v1.15.0 | ||
) | ||
|
||
require github.com/stretchr/testify v1.7.0 | ||
|
||
require ( | ||
github.com/armon/go-radix v1.0.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/elastic/go-licenser v0.3.1 // indirect | ||
github.com/elastic/go-sysinfo v1.1.1 // indirect | ||
github.com/elastic/go-windows v1.0.0 // indirect | ||
github.com/google/go-cmp v0.3.1 // indirect | ||
github.com/jcchavezs/porto v0.1.0 // indirect | ||
github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 // indirect | ||
github.com/kr/pretty v0.2.1 // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/procfs v0.0.0-20190425082905-87a4384529e0 // indirect | ||
github.com/santhosh-tekuri/jsonschema v1.2.4 // indirect | ||
github.com/stretchr/objx v0.1.1 // indirect | ||
go.elastic.co/fastjson v1.1.0 // indirect | ||
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect | ||
golang.org/x/mod v0.3.0 // indirect | ||
golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e // indirect | ||
golang.org/x/tools v0.0.0-20200509030707-2212a7e161a5 // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect | ||
howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect | ||
) |
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