Skip to content

Commit

Permalink
update project location references
Browse files Browse the repository at this point in the history
  • Loading branch information
James Ranson committed Mar 25, 2020
1 parent b058af5 commit b0bce86
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Should you wish to work on an issue, please claim it first by commenting on the

If you have questions about one of the issues, please comment on them and one of the maintainers will clarify it. For a quicker response, contact us on the #trickster slack channel.

For complete instructions on how to compile see: [Building From Source](https://github.com/Comcast/trickster#building-from-source)
For complete instructions on how to compile see: [Building From Source](https://github.com/tricksterproxy/trickster#building-from-source)

For quickly compiling and testing your changes do:
```
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ Go environment with [version 1.9 or greater installed](http://golang.org/doc/ins
You can directly use the `go` tool to download and install the `trickster`
binary into your `GOPATH`:

$ go get github.com/Comcast/trickster
$ go get github.com/tricksterproxy/trickster
$ trickster -origin-url http://prometheus.example.com:9090 -origin-type prometheus

You can also clone the repository yourself and build using `make`:

$ mkdir -p $GOPATH/src/github.com/Comcast
$ cd $GOPATH/src/github.com/Comcast
$ git clone https://github.com/Comcast/trickster.git
$ mkdir -p $GOPATH/src/github.com/tricksterproxy
$ cd $GOPATH/src/github.com/tricksterproxy
$ git clone https://github.com/tricksterproxy/trickster.git
$ cd trickster
$ make build
$ ./OPATH/trickster -origin-url http://prometheus.example.com:9090 -origin-type prometheus
Expand Down
4 changes: 2 additions & 2 deletions docs/developer/origin-extensibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Trickster provides 2 required interfaces for enabling a new Origin Type: The Pro

### Proxy Client Interface

The Proxy Client Interface ([code](https://github.com/Comcast/trickster/blob/next/internal/proxy/model/client.go)) is used by Trickster to manipulate HTTP requests and responses in order to accelerate the requests.
The Proxy Client Interface ([code](https://github.com/tricksterproxy/trickster/blob/next/internal/proxy/model/client.go)) is used by Trickster to manipulate HTTP requests and responses in order to accelerate the requests.

For your Proxy Client Implementation, you will need to know these things about the Origin:

Expand Down Expand Up @@ -68,7 +68,7 @@ The Proxy Client Interface Methods you will need to implement are broken into se

### Time Series Interface

The Time Series Interface ([code](https://github.com/Comcast/trickster/blob/next/internal/timeseries/timeseries.go)) is used by Trickster to manipulate Time Series documents in order to maintain the cache and construct downstream client request bodies.
The Time Series Interface ([code](https://github.com/tricksterproxy/trickster/blob/next/internal/timeseries/timeseries.go)) is used by Trickster to manipulate Time Series documents in order to maintain the cache and construct downstream client request bodies.

For your Time Series Implementation, you will need to know these things about the Origin:

Expand Down
2 changes: 1 addition & 1 deletion docs/developer/tracing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tracing support

Trickster has minimal support for OpenTelemetry. See https://github.com/Comcast/trickster/issues/36
Trickster has minimal support for OpenTelemetry. See <https://github.com/tricksterproxy/trickster/issues/36>

## Config
TODO
Expand Down

0 comments on commit b0bce86

Please sign in to comment.