Skip to content

Commit

Permalink
fix import path in sample codes (census-instrumentation#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
budougumi0617 authored and songy23 committed Oct 1, 2019
1 parent eb5cf58 commit a50cd5c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions content/exporters/supported-exporters/Go/DataDog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ logo: /img/partners/datadog_logo.svg
## Introduction
[Datadog](https://www.datadoghq.com/) is a real-time monitoring system that supports distributed tracing and monitoring.

Its OpenCensus Go exporter is available at [https://godoc.org/github.com/Datadog/opencensus-go-exporter-datadog](https://godoc.org/github.com/Datadog/opencensus-go-exporter-datadog)
Its OpenCensus Go exporter is available at [https://godoc.org/github.com/DataDog/opencensus-go-exporter-datadog](https://godoc.org/github.com/DataDog/opencensus-go-exporter-datadog)


## Creating the exporter
Expand All @@ -28,7 +28,7 @@ To create the exporter, we'll need:
This is possible by importing the exporter

{{<highlight go>}}
import "github.com/Datadog/opencensus-go-exporter-datadog"
import "github.com/DataDog/opencensus-go-exporter-datadog"

// then create the actual exporter
dd := datadog.NewExporter(datadog.Options{})
Expand All @@ -43,7 +43,7 @@ package main
import (
"log"

"github.com/Datadog/opencensus-go-exporter-datadog"
"github.com/DataDog/opencensus-go-exporter-datadog"
"go.opencensus.io/stats/view"
)

Expand All @@ -66,7 +66,7 @@ package main
import (
"log"

"github.com/Datadog/opencensus-go-exporter-datadog"
"github.com/DataDog/opencensus-go-exporter-datadog"
"go.opencensus.io/trace"
)

Expand All @@ -92,7 +92,7 @@ package main
import (
"log"

"github.com/Datadog/opencensus-go-exporter-datadog"
"github.com/DataDog/opencensus-go-exporter-datadog"
"go.opencensus.io/stats/view"
"go.opencensus.io/trace"
)
Expand Down

0 comments on commit a50cd5c

Please sign in to comment.