parent
704d9ad76c
commit
6afe9ceef1
|
@ -57,6 +57,7 @@ should now look like:
|
||||||
- [#1432](https://github.com/influxdata/telegraf/issues/1432): Panic fix for multiple graphite outputs under very high load.
|
- [#1432](https://github.com/influxdata/telegraf/issues/1432): Panic fix for multiple graphite outputs under very high load.
|
||||||
- [#1412](https://github.com/influxdata/telegraf/pull/1412): Instrumental output has better reconnect behavior
|
- [#1412](https://github.com/influxdata/telegraf/pull/1412): Instrumental output has better reconnect behavior
|
||||||
- [#1460](https://github.com/influxdata/telegraf/issues/1460): Remove PID from procstat plugin to fix cardinality issues.
|
- [#1460](https://github.com/influxdata/telegraf/issues/1460): Remove PID from procstat plugin to fix cardinality issues.
|
||||||
|
- [#1427](https://github.com/influxdata/telegraf/issues/1427): Cassandra input: version 2.x "column family" fix.
|
||||||
|
|
||||||
## v1.0 beta 2 [2016-06-21]
|
## v1.0 beta 2 [2016-06-21]
|
||||||
|
|
||||||
|
|
|
@ -148,7 +148,7 @@ func (c cassandraMetric) addTagsFields(out map[string]interface{}) {
|
||||||
tokens := parseJmxMetricRequest(r.(map[string]interface{})["mbean"].(string))
|
tokens := parseJmxMetricRequest(r.(map[string]interface{})["mbean"].(string))
|
||||||
// Requests with wildcards for keyspace or table names will return nested
|
// Requests with wildcards for keyspace or table names will return nested
|
||||||
// maps in the json response
|
// maps in the json response
|
||||||
if tokens["type"] == "Table" && (tokens["keyspace"] == "*" ||
|
if (tokens["type"] == "Table" || tokens["type"] == "ColumnFamily") && (tokens["keyspace"] == "*" ||
|
||||||
tokens["scope"] == "*") {
|
tokens["scope"] == "*") {
|
||||||
if valuesMap, ok := out["value"]; ok {
|
if valuesMap, ok := out["value"]; ok {
|
||||||
for k, v := range valuesMap.(map[string]interface{}) {
|
for k, v := range valuesMap.(map[string]interface{}) {
|
||||||
|
|
Loading…
Reference in New Issue