Skip to content

Commit 8209b3b

Browse files
committed
chore: Rename imports and upstream paths.
1 parent 2d296fc commit 8209b3b

File tree

111 files changed

+285
-286
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+285
-286
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If your problem is with the way an `mtail` program is behaving, please attach or
1515

1616
If your problem is with `mtail`, please include the commandline you started it with, and the INFO log.
1717

18-
See also [Reporting a problem](https://github.com/google/mtail/blob/main/docs/Troubleshooting.md#reporting-a-problem).
18+
See also [Reporting a problem](https://github.com/jaqx0r/mtail/blob/main/docs/Troubleshooting.md#reporting-a-problem).
1919

2020

2121
Thanks!

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ stages:
77
before_script:
88
- mkdir ${CI_PROJECT_DIR}/build
99
- mkdir -p ${GOPATH}/src/github.com/google/
10-
- ln -s $(pwd) ${GOPATH}/src/github.com/google/mtail
11-
- cd ${GOPATH}/src/github.com/google/mtail
10+
- ln -s $(pwd) ${GOPATH}/src/github.com/jaqx0r/mtail
11+
- cd ${GOPATH}/src/github.com/jaqx0r/mtail
1212

1313
test:
1414
stage: test

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM golang:alpine AS builder
22
RUN apk add --update git make
3-
WORKDIR /go/src/github.com/google/mtail
4-
COPY . /go/src/github.com/google/mtail
3+
WORKDIR /go/src/github.com/jaqx0r/mtail
4+
COPY . /go/src/github.com/jaqx0r/mtail
55
RUN make depclean && make install_deps && PREFIX=/go make STATIC=y -B install
66

77

@@ -18,8 +18,7 @@ ARG commit_hash=unknown
1818
ARG vcs_url=unknown
1919
ARG vcs_branch=unknown
2020

21-
LABEL org.opencontainers.image.ref.name="google/mtail" \
22-
org.opencontainers.image.vendor="Google" \
21+
LABEL org.opencontainers.image.ref.name="jaqx0r/mtail" \
2322
org.opencontainers.image.title="mtail" \
2423
org.opencontainers.image.description="extract internal monitoring data from application logs for collection in a timeseries database" \
2524
org.opencontainers.image.authors="Jamie Wilkinson (@jaqx0r)" \
@@ -29,4 +28,4 @@ LABEL org.opencontainers.image.ref.name="google/mtail" \
2928
org.opencontainers.image.source=$vcs_url \
3029
org.opencontainers.image.documentation="https://google.github.io/mtail/" \
3130
org.opencontainers.image.created=$build_date \
32-
org.opencontainers.image.url="https://github.com/google/mtail"
31+
org.opencontainers.image.url="https://github.com/jaqx0r/mtail"

ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ If your problem is with the way an `mtail` program is behaving, please attach or
66

77
If your problem is with `mtail`, please include the commandline you started it with, and the INFO log.
88

9-
See also [Reporting a problem](https://github.com/google/mtail/blob/main/docs/Troubleshooting.md#reporting-a-problem).
9+
See also [Reporting a problem](https://github.com/jaqx0r/mtail/blob/main/docs/Troubleshooting.md#reporting-a-problem).
1010

1111

1212
Thanks!

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://raw.githubusercontent.com/google/mtail/main/logo.png" alt="mtail" title="mtail" align="right" width="140">
1+
<img src="https://raw.githubusercontent.com/jaqx0r/mtail/main/logo.png" alt="mtail" title="mtail" align="right" width="140">
22

33
# mtail - extract internal monitoring data from application logs for collection into a timeseries database
44

cmd/mdot/main.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Command mdot turns an mtail program AST into a graphviz graph on standard output
66
77
To use, run it like (assuming your shell is in the same directory as this file)
88
9-
go run github.com/google/mtail/cmd/mdot --prog ../../examples/dhcpd.mtail | xdot -
9+
go run github.com/jaqx0r/mtail/cmd/mdot --prog ../../examples/dhcpd.mtail | xdot -
1010
1111
or
1212
13-
go run github.com/google/mtail/cmd/mdot --prog ../../examples/dhcpd.mtail --http_port 8080
13+
go run github.com/jaqx0r/mtail/cmd/mdot --prog ../../examples/dhcpd.mtail --http_port 8080
1414
1515
to view the dot output visit http://localhost:8080
1616
@@ -29,10 +29,10 @@ import (
2929
"strings"
3030

3131
"github.com/golang/glog"
32-
"github.com/google/mtail/internal/mtail"
33-
"github.com/google/mtail/internal/runtime/compiler/ast"
34-
"github.com/google/mtail/internal/runtime/compiler/checker"
35-
"github.com/google/mtail/internal/runtime/compiler/parser"
32+
"github.com/jaqx0r/mtail/internal/mtail"
33+
"github.com/jaqx0r/mtail/internal/runtime/compiler/ast"
34+
"github.com/jaqx0r/mtail/internal/runtime/compiler/checker"
35+
"github.com/jaqx0r/mtail/internal/runtime/compiler/parser"
3636
)
3737

3838
var (

cmd/mfmt/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"os"
1414

1515
"github.com/golang/glog"
16-
"github.com/google/mtail/internal/runtime/compiler/checker"
17-
"github.com/google/mtail/internal/runtime/compiler/parser"
16+
"github.com/jaqx0r/mtail/internal/runtime/compiler/checker"
17+
"github.com/jaqx0r/mtail/internal/runtime/compiler/parser"
1818
)
1919

2020
var (

cmd/mgen/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"math/rand"
1111

12-
"github.com/google/mtail/internal/runtime/compiler/parser"
12+
"github.com/jaqx0r/mtail/internal/runtime/compiler/parser"
1313
)
1414

1515
var (

cmd/mtail/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ import (
1515
"time"
1616

1717
"github.com/golang/glog"
18-
"github.com/google/mtail/internal/exporter"
19-
"github.com/google/mtail/internal/metrics"
20-
"github.com/google/mtail/internal/mtail"
21-
"github.com/google/mtail/internal/waker"
18+
"github.com/jaqx0r/mtail/internal/exporter"
19+
"github.com/jaqx0r/mtail/internal/metrics"
20+
"github.com/jaqx0r/mtail/internal/mtail"
21+
"github.com/jaqx0r/mtail/internal/waker"
2222
"go.opencensus.io/trace"
2323
)
2424

docs/Building.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ You will need to install a recent Go.
99

1010
Fetch, build, and install the binary directly with `go get`
1111

12-
`go install github.com/google/mtail/cmd/mtail`
12+
`go install github.com/jaqx0r/mtail/cmd/mtail`
1313

1414
NOTE: If you do it this way, you won't have a supported version of `mtail`.
1515

1616
## The "Right Way"
1717

18-
[Clone](http://github.com/google/mtail) the source from GitHub into your `$GOPATH`. If you don't have a `$GOPATH`, see the next section.
18+
[Clone](http://github.com/jaqx0r/mtail) the source from GitHub into your `$GOPATH`. If you don't have a `$GOPATH`, see the next section.
1919

2020
```
21-
git clone https://github.com/google/mtail
21+
git clone https://github.com/jaqx0r/mtail
2222
cd mtail
2323
make test install
2424
```

0 commit comments

Comments
 (0)