Skip to content

Commit 5db9cde

Browse files
authored
Finish replacing uber/jaeger with jaegertracing/jaeger (#537)
1 parent 5ffaa47 commit 5db9cde

9 files changed

+43
-38
lines changed

CONTRIBUTING.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ file for details.
2121

2222
This library uses [glide](https://github.com/Masterminds/glide) to manage dependencies.
2323

24-
To get started, make sure you clone the Git repository into the correct location `github.com/uber/jaeger` relative to `$GOPATH`:
24+
To get started, make sure you clone the Git repository into the correct location `github.com/jaegertracing/jaeger` relative to `$GOPATH`:
2525

2626
```
27-
mkdir -p $GOPATH/src/github.com/uber
28-
cd $GOPATH/src/github.com/uber
27+
mkdir -p $GOPATH/src/github.com/jaegertracing
28+
cd $GOPATH/src/github.com/jaegertracing
2929
git clone git@github.com:jaegertracing/jaeger.git jaeger
3030
cd jaeger
3131
```
@@ -43,7 +43,7 @@ make test
4343
These are general guidelines on how to organize source code in this repository.
4444

4545
```
46-
github.com/uber/jaeger
46+
github.com/jaegertracing/jaeger
4747
cmd/ - All binaries go here
4848
agent/
4949
app/ - The actual code for the binary
@@ -102,15 +102,15 @@ import (
102102
"github.com/uber/jaeger-lib/metrics"
103103
"go.uber.org/zap"
104104

105-
"github.com/uber/jaeger/cmd/agent/app"
106-
"github.com/uber/jaeger/cmd/collector/app/builder"
105+
"github.com/jaegertracing/jaeger/cmd/agent/app"
106+
"github.com/jaegertracing/jaeger/cmd/collector/app/builder"
107107
)
108108
```
109109

110110
## Making A Change
111111

112112
*Before making any significant changes, please [open an
113-
issue](https://github.com/uber/jaeger/issues).* Discussing your proposed
113+
issue](https://github.com/jaegertracing/jaeger/issues).* Discussing your proposed
114114
changes ahead of time will make the contribution process smooth for everyone.
115115

116116
Once we've discussed your changes and you've got your code ready, make sure

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ Jaeger is hosted by the [Cloud Native Computing Foundation](https://cncf.io) (CN
2828

2929
### Instrumentation Libraries
3030

31-
* [Go client](https://github.com/uber/jaeger-client-go)
32-
* [Java client](https://github.com/uber/jaeger-client-java)
33-
* [Python client](https://github.com/uber/jaeger-client-python)
34-
* [Node.js client](https://github.com/uber/jaeger-client-node)
31+
* [Go client](https://github.com/jaegertracing/jaeger-client-go)
32+
* [Java client](https://github.com/jaegertracing/jaeger-client-java)
33+
* [Python client](https://github.com/jaegertracing/jaeger-client-python)
34+
* [Node.js client](https://github.com/jaegertracing/jaeger-client-node)
3535
* [C++ client](https://github.com/jaegertracing/cpp-client)
3636

3737
### Contributions
@@ -43,8 +43,8 @@ Jaeger is hosted by the [Cloud Native Computing Foundation](https://cncf.io) (CN
4343

4444
### Components
4545

46-
* [UI](https://github.com/uber/jaeger-ui)
47-
* [Data model](https://github.com/uber/jaeger-idl)
46+
* [UI](https://github.com/jaegertracing/jaeger-ui)
47+
* [Data model](https://github.com/jaegertracing/jaeger-idl)
4848

4949
## Building From Source
5050

@@ -69,7 +69,7 @@ Reach project contributors via these channels:
6969

7070
* [jaeger-tracing mail group](https://groups.google.com/forum/#!forum/jaeger-tracing)
7171
* [Gitter chat room](https://gitter.im/jaegertracing/Lobby)
72-
* [Github issues](https://github.com/uber/jaeger/issues)
72+
* [Github issues](https://github.com/jaegertracing/jaeger/issues)
7373

7474
## Adopters
7575

@@ -79,16 +79,16 @@ whether it runs in production or you use it to troubleshoot issues in developmen
7979

8080
Please see [ADOPTERS.md](./ADOPTERS.md) for some of the organizations using Jaeger today.
8181
If you would like to add your organization to the list, please comment on our
82-
[survey issue](https://github.com/uber/jaeger/issues/207).
82+
[survey issue](https://github.com/jaegertracing/jaeger/issues/207).
8383

8484
## License
8585

8686
[Apache 2.0 License](./LICENSE).
8787

8888
[doc-img]: https://readthedocs.org/projects/jaeger/badge/?version=latest
8989
[doc]: http://jaeger.readthedocs.org/en/latest/
90-
[godoc-img]: https://godoc.org/github.com/uber/jaeger?status.svg
91-
[godoc]: https://godoc.org/github.com/uber/jaeger
90+
[godoc-img]: https://godoc.org/github.com/jaegertracing/jaeger?status.svg
91+
[godoc]: https://godoc.org/github.com/jaegertracing/jaeger
9292
[ci-img]: https://travis-ci.org/jaegertracing/jaeger.svg?branch=master
9393
[ci]: https://travis-ci.org/jaegertracing/jaeger
9494
[cov-img]: https://coveralls.io/repos/jaegertracing/jaeger/badge.svg?branch=master

doc.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
// Package jaeger contains the code for Jaeger backend.
1615
// Do not delete this file, it's needed for `go get` to work.
16+
17+
// Package jaeger contains the code for Jaeger backend.
1718
package jaeger

docs/deployment.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ docker run \
5858
```
5959

6060
In the future we will support different service discovery systems to dynamically load balance
61-
across several collectors ([issue 213](https://github.com/uber/jaeger/issues/213)).
61+
across several collectors ([issue 213](https://github.com/jaegertracing/jaeger/issues/213)).
6262

6363
## Collectors
6464

@@ -183,7 +183,7 @@ Links can either be members of the `menu` Array, directly, or they can be groupe
183183

184184
The `items` Array should contain one or more link configurations.
185185

186-
TODO: Swagger and GraphQL API ([issue 158](https://github.com/uber/jaeger/issues/158)).
186+
TODO: Swagger and GraphQL API ([issue 158](https://github.com/jaegertracing/jaeger/issues/158)).
187187

188188
## Aggregation Jobs for Service Dependencies
189189

docs/getting_started.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,10 @@ traces.
4444
#### Running
4545

4646
```bash
47-
go get github.com/uber/jaeger
48-
cd $GOPATH/src/github.com/uber/jaeger
47+
mkdir -p $GOPATH/src/github.com/jaegertracing
48+
cd $GOPATH/src/github.com/jaegertracing
49+
git clone git@github.com:jaegertracing/jaeger.git jaeger
50+
cd jaeger
4951
make install
5052
cd examples/hotrod
5153
go run ./main.go all
@@ -83,8 +85,10 @@ Individual Jaeger backend components can be run from source.
8385
They all have their `main.go` in the `cmd` folder. For example, to run the `jaeger-agent`:
8486

8587
```bash
86-
go get github.com/uber/jaeger
87-
cd $GOPATH/src/github.com/uber/jaeger
88+
mkdir -p $GOPATH/src/github.com/jaegertracing
89+
cd $GOPATH/src/github.com/jaegertracing
90+
git clone git@github.com:jaegertracing/jaeger.git jaeger
91+
cd jaeger
8892
make install
8993
go run ./cmd/agent/main.go
9094
```
@@ -98,7 +102,7 @@ Collector service exposes Zipkin compatible REST API `/api/v1/spans` and can be
98102
`--collector.zipkin.http-port=9411`. It supports Thrift and JSON format.
99103
Agent uses `TBinaryProtocol` and is available on `UDP` port `5775`.
100104

101-
Zipkin Thrift IDL file can be found [here](https://github.com/uber/jaeger-idl/blob/master/thrift/zipkincore.thrift).
105+
Zipkin Thrift IDL file can be found [here](https://github.com/jaegertracing/jaeger-idl/blob/master/thrift/zipkincore.thrift).
102106
It's compatible with [zipkinCore.thrift](https://github.com/openzipkin/zipkin-api/blob/master/thrift/zipkinCore.thrift)
103107

104108
[hotrod-tutorial]: https://medium.com/@YuriShkuro/take-opentracing-for-a-hotrod-ride-f6e3141f7941

docs/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Welcome to Jaeger's documentation portal! Below, you'll find information for beginners and experienced Jaeger users.
66

7-
If you can't find what you are looking for, or have an issue not covered here, we'd love to hear from you either on [Github](https://github.com/uber/jaeger/issues), [Gitter chat](https://gitter.im/jaegertracing/Lobby), or on our [mailing list](https://groups.google.com/forum/#!forum/jaeger-tracing).
7+
If you can't find what you are looking for, or have an issue not covered here, we'd love to hear from you either on [Github](https://github.com/jaegertracing/jaeger/issues), [Gitter chat](https://gitter.im/jaegertracing/Lobby), or on our [mailing list](https://groups.google.com/forum/#!forum/jaeger-tracing).
88

99
## About
1010
Jaeger, inspired by [Dapper][dapper] and [OpenZipkin](http://zipkin.io),
@@ -23,7 +23,7 @@ for the architectural choices made in Jaeger.
2323
## Features
2424

2525
* [OpenTracing](http://opentracing.io/) compatible data model and instrumentation libraries
26-
* in [Go](https://github.com/uber/jaeger-client-go), [Java](https://github.com/uber/jaeger-client-java), [Node](https://github.com/uber/jaeger-client-node), [Python](https://github.com/uber/jaeger-client-python)
26+
* in [Go](https://github.com/jaegertracing/jaeger-client-go), [Java](https://github.com/jaegertracing/jaeger-client-java), [Node](https://github.com/jaegertracing/jaeger-client-node), [Python](https://github.com/jaegertracing/jaeger-client-python)
2727
and [C++](https://github.com/jaegertracing/cpp-client)
2828
* Uses consistent upfront sampling with individual per service/endpoint probabilities
2929
* Adaptive sampling (coming soon)
@@ -33,7 +33,7 @@ for the architectural choices made in Jaeger.
3333

3434
* Backend components implemented in Go
3535
* React/Javascript UI
36-
* [Cassandra 3.x](https://github.com/uber/jaeger/tree/master/plugin/storage/cassandra), [ElasticSearch](https://github.com/uber/jaeger/tree/master/plugin/storage/es) as persistent storage (more storage backends coming soon)
36+
* [Cassandra 3.x](https://github.com/jaegertracing/jaeger/tree/master/plugin/storage/cassandra), [ElasticSearch](https://github.com/jaegertracing/jaeger/tree/master/plugin/storage/es) as persistent storage (more storage backends coming soon)
3737

3838
## Quick Start
3939
See [running a docker all in one image](getting_started.md#all-in-one-docker-image).

docs/news.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ News coverage:
2020
<img align="right" src="../images/jaeger-vector.svg" width=400>
2121
Uber is pleased to announce the open source release of Jaeger, a distributed tracing system, used to monitor, profile, and troubleshoot microservices.
2222

23-
Jaeger is written in Go, with OpenTracing compatible client libraries in [Go](https://github.com/uber/jaeger-client-go), [Java](https://github.com/uber/jaeger-client-java), [Node](https://github.com/uber/jaeger-client-node), and [Python](https://github.com/uber/jaeger-client-python). It allows service owners to instrument their services to get insights into what their architecture is doing.
23+
Jaeger is written in Go, with OpenTracing compatible client libraries in [Go](https://github.com/jaegertracing/jaeger-client-go), [Java](https://github.com/jaegertracing/jaeger-client-java), [Node](https://github.com/jaegertracing/jaeger-client-node), and [Python](https://github.com/jaegertracing/jaeger-client-python). It allows service owners to instrument their services to get insights into what their architecture is doing.
2424

25-
Jaeger is available now on [Github](https://github.com/uber/jaeger) as a public beta. Try it out by running the complete backend using the [Docker image](http://jaeger.readthedocs.io/en/latest/getting_started/#all-in-one-docker-image) along with a sample application, [HotROD](http://jaeger.readthedocs.io/en/latest/getting_started/#sample-application), to generate interesting traces.
25+
Jaeger is available now on [Github](https://github.com/jaegertracing/jaeger) as a public beta. Try it out by running the complete backend using the [Docker image](http://jaeger.readthedocs.io/en/latest/getting_started/#all-in-one-docker-image) along with a sample application, [HotROD](http://jaeger.readthedocs.io/en/latest/getting_started/#sample-application), to generate interesting traces.
2626

2727
We hope that other organizations find Jaeger to be a useful tool, and we welcome contributions.
2828
Keep up to date by subscribing to our [mailing list](https://groups.google.com/forum/#!forum/jaeger-tracing).

docs/roadmap.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The following is only a selection of some of the major features we plan to implement in the near future (6-12 months).
44
To get a more complete overview of planned features and current work, see the issue trackers for the various repositories,
5-
for example, the [Jaeger backend](https://github.com/uber/jaeger/issues/).
5+
for example, the [Jaeger backend](https://github.com/jaegertracing/jaeger/issues/).
66

77
## Adaptive Sampling
88

@@ -18,15 +18,15 @@ the storage backend. There are two issues with the current approach:
1818
endpoint never sampled. For example, if the QPS of the endpoints is different by a factor of 100, and the
1919
probability is set to 0.001, then the low QPS traffic will have only 1 in 100,000 chance to be sampled.
2020

21-
See issue tracker for more info: [jaeger/issues/365](https://github.com/uber/jaeger/issues/365).
21+
See issue tracker for more info: [jaeger/issues/365](https://github.com/jaegertracing/jaeger/issues/365).
2222

2323
## Support for Large Traces in the UI
2424

25-
[jaeger-ui/milestone/1](https://github.com/uber/jaeger-ui/milestone/1)
25+
[jaeger-ui/milestone/1](https://github.com/jaegertracing/jaeger-ui/milestone/1)
2626

2727
## Instrumentation Libraries in More Languages
2828

29-
[jaeger/issues/366](https://github.com/uber/jaeger/issues/366)
29+
[jaeger/issues/366](https://github.com/jaegertracing/jaeger/issues/366)
3030

3131
## Data Pipeline
3232

@@ -36,7 +36,7 @@ Post-collection data pipeline for trace aggregation and data mining based on Apa
3636

3737
Features for Jaeger backend to be a drop-in replacement for Zipkin backend.
3838

39-
[jaeger/milestone/2](https://github.com/uber/jaeger/milestone/2)
39+
[jaeger/milestone/2](https://github.com/jaegertracing/jaeger/milestone/2)
4040

4141
## Path-Based Dependency Diagrams
4242

@@ -74,14 +74,14 @@ there are always questions about how much of the architecture is integrated
7474
with tracing, what is the quality of the instrumentation, are there microservices
7575
that are using stale versions of instrumentation libraries, etc.
7676

77-
Trace Quality engine ([jaeger/issues/367](https://github.com/uber/jaeger/issues/367))
77+
Trace Quality engine ([jaeger/issues/367](https://github.com/jaegertracing/jaeger/issues/367))
7878
runs analysis on all traces collected in the backend, inspects them for known completeness
7979
and quality problems, and provides summary reports to service owners with suggestions on
8080
improving the quality metrics and links to sample traces that exhibit the issues.
8181

8282
## Dynamic Configuration
8383

84-
We need a dynamic configuration solution ([jaeger/issues/355](https://github.com/uber/jaeger/issues/355))
84+
We need a dynamic configuration solution ([jaeger/issues/355](https://github.com/jaegertracing/jaeger/issues/355))
8585
that comes in handy in various scenarios:
8686

8787
* Blacklisting services,

glide.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/uber/jaeger
1+
package: github.com/jaegertracing/jaeger
22
import:
33
- package: github.com/apache/thrift
44
version: 0.9.3

0 commit comments

Comments
 (0)