-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finish replacing uber/jaeger with jaegertracing/jaeger (#537)
- Loading branch information
1 parent
5ffaa47
commit 5db9cde
Showing
9 changed files
with
43 additions
and
38 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 |
---|---|---|
|
@@ -21,11 +21,11 @@ file for details. | |
|
||
This library uses [glide](https://github.com/Masterminds/glide) to manage dependencies. | ||
|
||
To get started, make sure you clone the Git repository into the correct location `github.com/uber/jaeger` relative to `$GOPATH`: | ||
To get started, make sure you clone the Git repository into the correct location `github.com/jaegertracing/jaeger` relative to `$GOPATH`: | ||
|
||
``` | ||
mkdir -p $GOPATH/src/github.com/uber | ||
cd $GOPATH/src/github.com/uber | ||
mkdir -p $GOPATH/src/github.com/jaegertracing | ||
cd $GOPATH/src/github.com/jaegertracing | ||
git clone [email protected]:jaegertracing/jaeger.git jaeger | ||
cd jaeger | ||
``` | ||
|
@@ -43,7 +43,7 @@ make test | |
These are general guidelines on how to organize source code in this repository. | ||
|
||
``` | ||
github.com/uber/jaeger | ||
github.com/jaegertracing/jaeger | ||
cmd/ - All binaries go here | ||
agent/ | ||
app/ - The actual code for the binary | ||
|
@@ -102,15 +102,15 @@ import ( | |
"github.com/uber/jaeger-lib/metrics" | ||
"go.uber.org/zap" | ||
|
||
"github.com/uber/jaeger/cmd/agent/app" | ||
"github.com/uber/jaeger/cmd/collector/app/builder" | ||
"github.com/jaegertracing/jaeger/cmd/agent/app" | ||
"github.com/jaegertracing/jaeger/cmd/collector/app/builder" | ||
) | ||
``` | ||
|
||
## Making A Change | ||
|
||
*Before making any significant changes, please [open an | ||
issue](https://github.com/uber/jaeger/issues).* Discussing your proposed | ||
issue](https://github.com/jaegertracing/jaeger/issues).* Discussing your proposed | ||
changes ahead of time will make the contribution process smooth for everyone. | ||
|
||
Once we've discussed your changes and you've got your code ready, make sure | ||
|
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
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 |
---|---|---|
|
@@ -44,8 +44,10 @@ traces. | |
#### Running | ||
|
||
```bash | ||
go get github.com/uber/jaeger | ||
cd $GOPATH/src/github.com/uber/jaeger | ||
mkdir -p $GOPATH/src/github.com/jaegertracing | ||
cd $GOPATH/src/github.com/jaegertracing | ||
git clone [email protected]:jaegertracing/jaeger.git jaeger | ||
cd jaeger | ||
make install | ||
cd examples/hotrod | ||
go run ./main.go all | ||
|
@@ -83,8 +85,10 @@ Individual Jaeger backend components can be run from source. | |
They all have their `main.go` in the `cmd` folder. For example, to run the `jaeger-agent`: | ||
|
||
```bash | ||
go get github.com/uber/jaeger | ||
cd $GOPATH/src/github.com/uber/jaeger | ||
mkdir -p $GOPATH/src/github.com/jaegertracing | ||
cd $GOPATH/src/github.com/jaegertracing | ||
git clone [email protected]:jaegertracing/jaeger.git jaeger | ||
cd jaeger | ||
make install | ||
go run ./cmd/agent/main.go | ||
``` | ||
|
@@ -98,7 +102,7 @@ Collector service exposes Zipkin compatible REST API `/api/v1/spans` and can be | |
`--collector.zipkin.http-port=9411`. It supports Thrift and JSON format. | ||
Agent uses `TBinaryProtocol` and is available on `UDP` port `5775`. | ||
|
||
Zipkin Thrift IDL file can be found [here](https://github.com/uber/jaeger-idl/blob/master/thrift/zipkincore.thrift). | ||
Zipkin Thrift IDL file can be found [here](https://github.com/jaegertracing/jaeger-idl/blob/master/thrift/zipkincore.thrift). | ||
It's compatible with [zipkinCore.thrift](https://github.com/openzipkin/zipkin-api/blob/master/thrift/zipkinCore.thrift) | ||
|
||
[hotrod-tutorial]: https://medium.com/@YuriShkuro/take-opentracing-for-a-hotrod-ride-f6e3141f7941 |
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
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