Skip to content

Commit

Permalink
Release commit V3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yogiraj Awati committed Apr 16, 2019
1 parent 583c302 commit 7b7d269
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## 3.0.1 (2019-04-16)
- Removed allocating 64KB size to UDP socket connection. Now, the daemon relies on underlying OS default UDP receiver size for the UDP socket connection
- Updated readme about credential configuration: [PR #21](https://github.com/aws/aws-xray-daemon/pull/21)

## 3.0.0 (2018-08-28)
- The daemon now serves as a proxy to the X-Ray SDK for API calls that are related to sampling rules. The proxy runs default on TCP port 2000 and relays calls to get sampling rules and report sampling statistics to X-Ray. The TCP proxy server address can be configured from command line using `t` flag or by using `cfg.yaml` version `2` file.
- `cfg.yaml` file version is changed to `2` and has an extra attribute. The daemon supports version `1` of cfg.yaml:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ You can also use [Glide](https://github.com/Masterminds/glide) to manage depende
glide install
```

## Configuration
## Credential Configuration

The Aws X-Ray Daemon follows default credential resolution for the [aws-sdk-go](https://docs.aws.amazon.com/sdk-for-go/api/index.html).
The AWS X-Ray Daemon follows default credential resolution for the [aws-sdk-go](https://docs.aws.amazon.com/sdk-for-go/api/index.html).

Follow the guidelines [here](https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html) to configure an IAM role for the AWS X-Ray Daemon to run under.
Follow the [guidelines](https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html) for the credential configuration.

## Daemon Usage (command line args)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.0.1
2 changes: 1 addition & 1 deletion daemon/cfg/cfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
)

// Version number of the X-Ray daemon.
const Version = "3.0.0"
const Version = "3.0.1"

var cfgFileVersions = [...]int{1, 2} // Supported versions of cfg.yaml file.

Expand Down

0 comments on commit 7b7d269

Please sign in to comment.