Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Merge pull request #267 from vishh/v0.11.0
Browse files Browse the repository at this point in the history
Releasing version v0.11.0
  • Loading branch information
vmarmol committed Apr 29, 2015
2 parents 387b79c + 97dde22 commit 66246df
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
17 changes: 11 additions & 6 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
# Release Notes

## 0.11.0 (Unreleased)
## 0.11.0 (4-28-2015)
- Export filesystem usage metrics for the node and containers.
- Support for Kubernetes events
- New Sink - Google Cloud Logging. Supports events only.
- New Sink - Google Cloud Monitoring. Supports metrics only.
- New metric labels - 'pod_name' and 'resource_id'.
- Extensible source and sinks configuration. It is now possible to export metrics and events to multiple sinks simultaneously.

## 0.10.0 (3-30-2014)
## 0.10.0 (3-30-2015)
- Downsampling - Resolution of metrics is set to 5s by default.
- Support for using Kube client auth.
- Improved Influxdb sink - sequence numbers are generated for every metric.
- Reliability improvements
- Bug fixes.

## 0.9 (3-13-2014)
## 0.9 (3-13-2015)
- [Standardized metrics](sinks/api/supported_metrics.go)
- New [common API](sinks/api/types.go) in place for all external storage drivers.
- Simplified heapster deployment scripts.
- Bug fixes and misc enhancements.

## 0.8 (2-22-2014)
## 0.8 (2-22-2015)
- Avoid expecting HostIP of Pod to match node's HostIP.

## 0.7 (2-18-2014)
## 0.7 (2-18-2015)
- Support for Google Cloud Monitoring Backend
- Watch kubernetes api-server instead of polling for pods and nodes info.
- Fetch stats in parallel.
- Refactor code and improve testing.
- Miscellaneous bug fixes.
- Native support for CoreOS.

## 0.6 (1-21-2014)
## 0.6 (1-21-2015)
- New /validate REST endpoint to probe heapster.
- Heapster supports kube namespaces.
- Heapster uses InfluxDB service DNS name while running in kube mode.
Expand Down
4 changes: 2 additions & 2 deletions docs/storage-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Heapster exports the following metrics to its backends.
| network/rx_errors | Cumulative number of errors while receiving over the network | Cumulative | Count | v0.9 |
| network/tx | Cumulative number of bytes sent over the network | Cumulative | Bytes | v0.9 |
| network/tx_errors | Cumulative number of errors while sending over the network | Cumulative | Count | v0.9 |
| filesystem/usage | Total number of bytes used on a filesystem identified by label 'resource_id' | Gauge | Bytes | HEAD |
| filesystem/usage | Total number of bytes used on a filesystem identified by label 'resource_id' | Gauge | Bytes | v0.11.0 |

*Note: Gauge refers to instantaneous metrics*

Expand All @@ -29,7 +29,7 @@ Heapster tags each metric with the following labels.
| container_name | User-provided name of the container or full cgroup name for system containers | v0.9 | No |
| labels | Comma-separated list of user-provided labels. Format is 'key:value' | v0.9 | Yes |
| hostname | Hostname where the container ran | v0.9 | No |
| resource_id | An unique identifier used to differentiate multiple metrics of the same type. e.x. Fs partitions under filesystem/usage | HEAD | No |
| resource_id | An unique identifier used to differentiate multiple metrics of the same type. e.x. Fs partitions under filesystem/usage | v0.11.0 | No |


## Storage Schema
Expand Down
4 changes: 2 additions & 2 deletions grafana/RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Release Notes

## 0.7 (Unreleased)
## 0.7 (4-28-2015)
- Updated kubernetes dashboard to have a grouping time of 5s.

## 0.6 (3-30-2014)
## 0.6 (3-30-2015)
- Switch to kuisp for serving files & proxying to services
- Configurable reverse proxy directly to InfluxDB service rather than using
apiserver proxy
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ package version
// Increment major number for new feature additions and behavioral changes.
// Increment minor number for bug fixes and performance enhancements.
// Increment patch number for critical fixes to existing releases.
const HeapsterVersion = "0.10.0"
const HeapsterVersion = "0.11.0"

0 comments on commit 66246df

Please sign in to comment.