Make ruby2crystal convert
Signed-off-by: Zhang Yu 2134782174@qq.com --- stats/crystal/sysbench-mysql.cr | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 stats/crystal/sysbench-mysql.cr
diff --git a/stats/crystal/sysbench-mysql.cr b/stats/crystal/sysbench-mysql.cr new file mode 100644 index 00000000..b9b6c8f1 --- /dev/null +++ b/stats/crystal/sysbench-mysql.cr @@ -0,0 +1,18 @@ +#!/usr/bin/env crystal + +# SQL statistics: +# queries performed: +# read: 210212086 +# write: 60060591 +# other: 30030296 +# total: 300302973 +# transactions: 15015147 (25024.26 per sec.) +# queries: 300302973 (500485.16 per sec.) +# ignored errors: 2 (0.00 per sec.) +# reconnects:0 (0.00 per sec.) + +while (line = STDIN.gets) + next unless line =~ /transactions:.*(\s*(\S+)/ + + puts "transactions: #{$1}" +end
On Thu, Nov 26, 2020 at 09:21:10AM +0800, Zhang Yu wrote:
Make ruby2crystal convert
Signed-off-by: Zhang Yu 2134782174@qq.com
stats/crystal/sysbench-mysql.cr | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 stats/crystal/sysbench-mysql.cr
diff --git a/stats/crystal/sysbench-mysql.cr b/stats/crystal/sysbench-mysql.cr new file mode 100644 index 00000000..b9b6c8f1 --- /dev/null +++ b/stats/crystal/sysbench-mysql.cr @@ -0,0 +1,18 @@ +#!/usr/bin/env crystal
+# SQL statistics: +# queries performed: +# read: 210212086 +# write: 60060591 +# other: 30030296 +# total: 300302973 +# transactions: 15015147 (25024.26 per sec.) +# queries: 300302973 (500485.16 per sec.) +# ignored errors: 2 (0.00 per sec.) +# reconnects:0 (0.00 per sec.)
+while (line = STDIN.gets)
What's the input? The comments above?
May need an example to compare the regex.
Thanks, RenWen
- next unless line =~ /transactions:.*(\s*(\S+)/
- puts "transactions: #{$1}"
+end
2.23.0
+# SQL statistics: +# queries performed: +# read: 210212086 +# write: 60060591 +# other: 30030296 +# total: 300302973 +# transactions: 15015147 (25024.26 per sec.) +# queries: 300302973 (500485.16 per sec.) +# ignored errors: 2 (0.00 per sec.) +# reconnects:0 (0.00 per sec.)
+while (line = STDIN.gets)
What's the input? The comments above?
May need an example to compare the regex
If you want to see the input output, please see $LKP_SRC/stats/sysbench-mysql, this just ruby2crystal convert.
Thanks, Zhangyu
- next unless line =~ /transactions:.*(\s*(\S+)/
- puts "transactions: #{$1}"
+end
2.23.0
On Thu, Nov 26, 2020 at 09:40:29AM +0800, Zhang Yu wrote:
+# SQL statistics: +# queries performed: +# read: 210212086 +# write: 60060591 +# other: 30030296 +# total: 300302973 +# transactions: 15015147 (25024.26 per sec.) +# queries: 300302973 (500485.16 per sec.) +# ignored errors: 2 (0.00 per sec.) +# reconnects:0 (0.00 per sec.)
+while (line = STDIN.gets)
What's the input? The comments above?
May need an example to compare the regex
If you want to see the input output, please see $LKP_SRC/stats/sysbench-mysql, this just ruby2crystal convert.
Yes, just a convert.
Thanks, RenWen
Thanks, Zhangyu
- next unless line =~ /transactions:.*(\s*(\S+)/
- puts "transactions: #{$1}"
+end
2.23.0