From 60b03a70265a77f2303d433a05b67aff80623dde Mon Sep 17 00:00:00 2001 From: Philipp von dem Bussche Date: Sat, 29 Oct 2016 10:23:13 +0200 Subject: [PATCH 1/2] doc update to explain the new feature around metric aliases. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 09707e6..7032f0b 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,11 @@ public class Main { } } ``` + +A nice little feature was added in the latest release which is called metric aliasing. With this you can specify an alias for the metric you are pulling. This is useful with you want to do further calculations on your metrics and don't want to write the original name all the time (which can be long). +Please see an example query below using a metric alias (same as the example above just with the aliases): + +``` +export 'Calls per Minute' as calls from 'Overall Application Performance' on Application 'Bundy Online Shoes' for 2 days + +``` \ No newline at end of file From a2a7f67652570465d19b193b4f1397b6e922cd1e Mon Sep 17 00:00:00 2001 From: Philipp von dem Bussche Date: Sat, 29 Oct 2016 10:26:21 +0200 Subject: [PATCH 2/2] minor grammar changes. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7032f0b..55ebe4c 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,8 @@ public class Main { } ``` -A nice little feature was added in the latest release which is called metric aliasing. With this you can specify an alias for the metric you are pulling. This is useful with you want to do further calculations on your metrics and don't want to write the original name all the time (which can be long). -Please see an example query below using a metric alias (same as the example above just with the aliases): +A nice little feature was added in the latest release which is called metric aliases. With this you can specify an alias for the metric you are pulling. This is useful if you want to do further calculations on your metrics and don't want to write the original name (which can be long) all the time . +Please see an example query below using a metric alias (same as the example above just with the alias): ``` export 'Calls per Minute' as calls from 'Overall Application Performance' on Application 'Bundy Online Shoes' for 2 days