aws

package
v1.8.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2018 License: BSD-3-Clause Imports: 5 Imported by: 0

Documentation

Overview

Package aws provides functions to trace aws/aws-sdk-go (https://github.com/aws/aws-sdk-go).

Example

To start tracing requests, wrap the AWS session.Session by invoking awstrace.WrapSession.

package main

import (
	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/s3"

	awstrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/aws/aws-sdk-go/aws"
)

func main() {
	cfg := aws.NewConfig().WithRegion("us-west-2")
	sess := session.Must(session.NewSession(cfg))
	sess = awstrace.WrapSession(sess)

	s3api := s3.New(sess)
	s3api.CreateBucket(&s3.CreateBucketInput{
		Bucket: aws.String("some-bucket-name"),
	})
}
Output:

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func WrapSession

func WrapSession(s *session.Session, opts ...Option) *session.Session

WrapSession wraps a session.Session, causing requests and responses to be traced.

Types

type Option

type Option func(*config)

Option represents an option that can be passed to Dial.

func WithServiceName

func WithServiceName(name string) Option

WithServiceName sets the given service name for the dialled connection. When the service name is not explicitly set it will be inferred based on the request to AWS.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL