Merge pull request #425 from influxdata/fix-k8s-groupbys

Update k8s groupbys to be escape quoted
pull/430/head
Chris Goller 2016-11-08 15:55:46 -06:00 committed by GitHub
commit b577657881
3 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@
"db": "telegraf",
"rp": "autogen",
"groupbys": [
"node_name"
"\"node_name\""
],
"wheres": []
}
@ -35,7 +35,7 @@
"db": "telegraf",
"rp": "autogen",
"groupbys": [
"node_name"
"\"node_name\""
],
"wheres": []
}

View File

@ -16,7 +16,7 @@
"db": "telegraf",
"rp": "autogen",
"groupbys": [
"pod_name"
"\"pod_name\""
],
"wheres": []
}
@ -35,7 +35,7 @@
"db": "telegraf",
"rp": "autogen",
"groupbys": [
"pod_name"
"\"pod_name\""
],
"wheres": []
}

View File

@ -17,8 +17,8 @@
"rp": "autogen",
"groupbys": [
"time(10s)",
"pod_name",
"host"
"\"pod_name\"",
"\"host\""
],
"wheres": []
}
@ -38,8 +38,8 @@
"rp": "autogen",
"groupbys": [
"time(10s)",
"pod_name",
"host"
"\"pod_name\"",
"\"host\""
],
"wheres": []
}