Skip to content

Commit

Permalink
Release 0.7.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspeitz committed Oct 19, 2018
1 parent c75ede2 commit 005e35c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# 0.7.0-alpha
* ALB Support
* Custom lables for static metrics

Example
```yaml
static:
- namespace: AWS/AutoScaling
region: eu-west-1
dimensions:
- name: AutoScalingGroupName
value: Test
customTags:
- Key: CustomTag
Value: CustomValue
metrics:
- name: GroupInServiceInstances
statistics:
- 'Minimum'
period: 60
length: 300
```
# 0.6.1
* Sanitize colons in tags
Expand Down
2 changes: 1 addition & 1 deletion src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
)

const yaceVersion = "0.6.1"
const yaceVersion = "0.7.0-alpha"

var (
addr = flag.String("listen-address", ":5000", "The address to listen on.")
Expand Down

0 comments on commit 005e35c

Please sign in to comment.