summaryrefslogtreecommitdiffstats
path: root/metrics-proxy/src/test/resources/metrics-storage-simple.json
diff options
context:
space:
mode:
Diffstat (limited to 'metrics-proxy/src/test/resources/metrics-storage-simple.json')
-rw-r--r--metrics-proxy/src/test/resources/metrics-storage-simple.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/metrics-proxy/src/test/resources/metrics-storage-simple.json b/metrics-proxy/src/test/resources/metrics-storage-simple.json
new file mode 100644
index 00000000000..00715b52046
--- /dev/null
+++ b/metrics-proxy/src/test/resources/metrics-storage-simple.json
@@ -0,0 +1,38 @@
+{
+ "status" : {
+ "code" : "up",
+ "message": "All good"
+ },
+
+ "metrics" : {
+ "snapshot" : {
+ "from": 1335523285,
+ "to": 1335525685
+ },
+ "values": [
+
+ {
+ "name" : "foo",
+ "values" : {
+ "count" : 1
+ },
+ "dimensions" : {
+ "foo": "bar",
+ "bar" : "foo"
+ }
+ },
+
+ {
+ "name" : "bar",
+ "values" : {
+ "count" : 2
+ },
+ "dimensions" : {
+ "d0": "d0val",
+ "d1" : "d1val"
+ }
+ }
+ ]
+
+ }
+}