Skip to content

Commit

Permalink
s/jpkrohling/observatorium
Browse files Browse the repository at this point in the history
Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>
  • Loading branch information
jpkrohling committed Sep 14, 2020
1 parent 7b63e51 commit 991ec3b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This program generates a custom OpenTelemetry Collector binary based on a given

## TL;DR
```console
$ go install github.com/jpkroehling/opentelemetry-collector-builder
$ go install github.com/observatorium/opentelemetry-collector-builder
$ cat > ~/.otelcol-builder.yaml <<EOF
exporters:
- gomod: "github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alibabacloudlogserviceexporter v0.9.0"
Expand Down Expand Up @@ -39,7 +39,7 @@ $ /tmp/dist/otelcol-custom --config=/tmp/otelcol.yaml
## Installation

```console
$ go install github.com/jpkroehling/opentelemetry-collector-builder
$ go install github.com/observatorium/opentelemetry-collector-builder
```

## Running
Expand Down Expand Up @@ -68,7 +68,7 @@ The `name` will typically be omitted, except when multiple components have the s

```yaml
dist:
module: github.com/jpkroehling/opentelemetry-collector-builder # the module name for the new distribution, following Go mod conventions. Optional, but recommended.
module: github.com/observatorium/opentelemetry-collector-builder # the module name for the new distribution, following Go mod conventions. Optional, but recommended.
name: otelcol-custom # the binary name. Optional.
description: "Custom OpenTelemetry Collector distribution" # a long name for the application. Optional.
output_path: /tmp/otelcol-distributionNNN # the path to write the output (sources and binary). Optional.
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/viper"

"github.com/jpkroehling/opentelemetry-collector-builder/internal/builder"
"github.com/observatorium/opentelemetry-collector-builder/internal/builder"
)

// Execute is the main entrypoint for this application
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

module github.com/jpkroehling/opentelemetry-collector-builder
module github.com/observatorium/opentelemetry-collector-builder

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion internal/builder/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"path/filepath"
"text/template"

"github.com/jpkroehling/opentelemetry-collector-builder/internal/scaffold"
"github.com/observatorium/opentelemetry-collector-builder/internal/scaffold"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package main

import "github.com/jpkroehling/opentelemetry-collector-builder/cmd"
import "github.com/observatorium/opentelemetry-collector-builder/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit 991ec3b

Please sign in to comment.