Skip to content

Commit

Permalink
Move from zefhemel/ax to egnyte/ax
Browse files Browse the repository at this point in the history
  • Loading branch information
Zef Hemel committed Sep 8, 2017
1 parent 70c7b74 commit c2100c4
Show file tree
Hide file tree
Showing 17 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
all:
go install github.com/zefhemel/ax/cmd/ax
go install github.com/egnyte/ax/cmd/ax

test:
go test ./cmd/... ./pkg/...
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
It's a structured logging world we live in, but do we really have to look at JSON? Not with Ax.

## Installation
For now there's no pre-built binaries, so to run this you need a reasonably recent version of Go. Then either git clone this project in `$GOPATH/src/github.com/zefhemel/ax` or run `go get -u github.com/zefhemel/ax`.
For now there's no pre-built binaries, so to run this you need a reasonably recent version of Go. Then either git clone this project in `$GOPATH/src/github.com/egnyte/ax` or run `go get -u github.com/egnyte/ax`.

To install dependencies:

Expand All @@ -19,7 +19,7 @@ To "go install" ax (this will put the resulting binary in `$GOPATH/bin` so put t

## Upgrade

In `$GOPATH/src/github.com/zefhemel/ax`:
In `$GOPATH/src/github.com/egnyte/ax`:

git pull
make
Expand Down
10 changes: 5 additions & 5 deletions cmd/ax/alert.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
"time"

"github.com/zefhemel/ax/pkg/alert"
"github.com/zefhemel/ax/pkg/alert/slack"
"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/cache"
"github.com/zefhemel/ax/pkg/config"
"github.com/egnyte/ax/pkg/alert"
"github.com/egnyte/ax/pkg/alert/slack"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/cache"
"github.com/egnyte/ax/pkg/config"
)

var (
Expand Down
14 changes: 7 additions & 7 deletions cmd/ax/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import (
"os"
"strings"

"github.com/zefhemel/kingpin"
"github.com/egnyte/kingpin"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/backend/docker"
"github.com/zefhemel/ax/pkg/backend/kibana"
"github.com/zefhemel/ax/pkg/backend/stream"
"github.com/zefhemel/ax/pkg/backend/subprocess"
"github.com/zefhemel/ax/pkg/config"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/docker"
"github.com/egnyte/ax/pkg/backend/kibana"
"github.com/egnyte/ax/pkg/backend/stream"
"github.com/egnyte/ax/pkg/backend/subprocess"
"github.com/egnyte/ax/pkg/config"
)

var (
Expand Down
8 changes: 4 additions & 4 deletions cmd/ax/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (

"github.com/araddon/dateparse"
"github.com/fatih/color"
"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/complete"
"github.com/zefhemel/ax/pkg/config"
"github.com/zefhemel/kingpin"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/complete"
"github.com/egnyte/ax/pkg/config"
"github.com/egnyte/kingpin"
yaml "gopkg.in/yaml.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/alert/alert.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package alert

import "github.com/zefhemel/ax/pkg/backend/common"
import "github.com/egnyte/ax/pkg/backend/common"

type Alerter interface {
SendAlert(lm common.LogMessage) error
Expand Down
4 changes: 2 additions & 2 deletions pkg/alert/slack/slack.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

yaml "gopkg.in/yaml.v2"

"github.com/zefhemel/ax/pkg/alert"
"github.com/zefhemel/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/alert"
"github.com/egnyte/ax/pkg/backend/common"
)

type SlackAlerter struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/backend/docker/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os/exec"
"strings"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/backend/subprocess"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/subprocess"
)

type DockerClient struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/backend/kibana/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
"net/http"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/common"
)

type Client struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/backend/kibana/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"sort"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/common"

"os"

Expand Down
4 changes: 2 additions & 2 deletions pkg/backend/stream/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"time"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/heuristic"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/heuristic"
)

type Client struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/backend/stream/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"
"time"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/common"
)

func TestFindTimestamp(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/backend/subprocess/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package subprocess
import (
"os/exec"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/backend/stream"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/stream"
)

type SubprocessClient struct {
Expand Down
6 changes: 3 additions & 3 deletions pkg/complete/complete.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"log"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/cache"
"github.com/zefhemel/ax/pkg/config"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/cache"
"github.com/egnyte/ax/pkg/config"
)

const cacheFilename = "attribute-cache.json"
Expand Down
8 changes: 4 additions & 4 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import (

"golang.org/x/crypto/ssh/terminal"

"github.com/zefhemel/kingpin"
"github.com/egnyte/kingpin"
yaml "gopkg.in/yaml.v2"

"github.com/olekukonko/tablewriter"
"github.com/zefhemel/ax/pkg/backend/common"
"github.com/zefhemel/ax/pkg/backend/docker"
"github.com/zefhemel/ax/pkg/backend/kibana"
"github.com/egnyte/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/docker"
"github.com/egnyte/ax/pkg/backend/kibana"
)

var dataDir string
Expand Down
2 changes: 1 addition & 1 deletion pkg/heuristic/timestamp.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"time"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/common"
)

const bottomEpochBarrier = 100000000
Expand Down
2 changes: 1 addition & 1 deletion pkg/heuristic/timestamp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package heuristic
import (
"testing"

"github.com/zefhemel/ax/pkg/backend/common"
"github.com/egnyte/ax/pkg/backend/common"
)

func TestParseTimestampUnix(t *testing.T) {
Expand Down

0 comments on commit c2100c4

Please sign in to comment.