Skip to content
This repository has been archived by the owner on Mar 22, 2022. It is now read-only.

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
dpb587-pivotal committed Jun 26, 2019
1 parent 0d32dc8 commit 9ab5a62
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# boshdebugtracer
# bosh-log-tracer

To visualize what BOSH is busy doing during a task.

Expand All @@ -24,7 +24,7 @@ Run [Jaeger](https://www.jaegertracing.io/) (the tooling and UI) locally accordi

Provide the debug log of a deploy task via `STDIN`...

bosh task --debug 1234 | go run ./cmd/boshtaskdebugjaeger
bosh task --debug 1234 | go run github.com/dpb587/bosh-log-tracer/cmd/taskdebugjaeger

Open the URL it prints (something like http://localhost:16686/trace/1cfa67194cc4d8ef).

Expand Down
6 changes: 3 additions & 3 deletions cmd/boshtaskdebugdebug/main.go → cmd/taskdebugdebug/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"bufio"
"os"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/boshdebugtracer/log/taskdebug"
"github.com/dpb587/boshdebugtracer/observer/debug"
"github.com/dpb587/bosh-log-tracer/log"
"github.com/dpb587/bosh-log-tracer/log/taskdebug"
"github.com/dpb587/bosh-log-tracer/observer/debug"
)

func main() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"bufio"
"os"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/boshdebugtracer/log/taskdebug"
"github.com/dpb587/boshdebugtracer/log/taskdebug/jaeger"
"github.com/dpb587/boshdebugtracer/observer/context"
"github.com/dpb587/bosh-log-tracer/log"
"github.com/dpb587/bosh-log-tracer/log/taskdebug"
"github.com/dpb587/bosh-log-tracer/log/taskdebug/jaeger"
"github.com/dpb587/bosh-log-tracer/observer/context"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/cpi_aws_rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var CPIAWSRPCParser = cpiAWSRPCParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/external_cpi.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package taskdebug
import (
"regexp"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var ExternalCPIParser = externalCPIParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/external_cpi_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"regexp"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var ExternalCPIRequestParser = externalCPIRequestParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/instance_aspect_changed.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"regexp"
"strings"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var InstanceAspectChangedParser = instanceAspectChangedParser{}
Expand Down
8 changes: 4 additions & 4 deletions log/taskdebug/jaeger/observer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"sort"
"strings"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/boshdebugtracer/log/taskdebug"
"github.com/dpb587/boshdebugtracer/observer"
"github.com/dpb587/boshdebugtracer/observer/context"
"github.com/dpb587/bosh-log-tracer/log"
"github.com/dpb587/bosh-log-tracer/log/taskdebug"
"github.com/dpb587/bosh-log-tracer/observer"
"github.com/dpb587/bosh-log-tracer/observer/context"

opentracing "github.com/opentracing/opentracing-go"
opentracinglog "github.com/opentracing/opentracing-go/log"
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/lock.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package taskdebug
import (
"regexp"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var LockParser = lockParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/nats.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"regexp"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var NATSMessageParser = natsMessageParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/nats_sent_agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strings"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var NATSMessageSentAgentParser = natsMessageSentAgentParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/parser.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package taskdebug

import "github.com/dpb587/boshdebugtracer/log"
import "github.com/dpb587/bosh-log-tracer/log"

var Parser = []log.LineParser{
RawParser,
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package taskdebug
import (
"regexp"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var ProcessParser = processParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/raw.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"regexp"
"time"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var RawParser = rawParser{}
Expand Down
2 changes: 1 addition & 1 deletion log/taskdebug/sequel.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"time"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/bosh-log-tracer/log"
)

var SequelParser = sequelParser{}
Expand Down
6 changes: 3 additions & 3 deletions observer/debug/observer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package debug
import (
"fmt"

"github.com/dpb587/boshdebugtracer/log"
"github.com/dpb587/boshdebugtracer/log/taskdebug"
"github.com/dpb587/boshdebugtracer/observer"
"github.com/dpb587/bosh-log-tracer/log"
"github.com/dpb587/bosh-log-tracer/log/taskdebug"
"github.com/dpb587/bosh-log-tracer/observer"
)

type Observer struct{}
Expand Down
2 changes: 1 addition & 1 deletion observer/interfaces.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package observer

import "github.com/dpb587/boshdebugtracer/log"
import "github.com/dpb587/bosh-log-tracer/log"

type Observer interface {
Begin() error
Expand Down

0 comments on commit 9ab5a62

Please sign in to comment.