Facing round off issue with Jmeter Throughput Metric in exported CSV file in Jmeter 5.0












1















I can see the whole number for Throughput in Jmeter 5.0, if I double click against each of the sampler.
enter image description here



But it doesn't appear when I export the same report in .csv file.
enter image description here



It is round off in the CSV file, and I need to have the whole number so that I can compare with Baseline and Prior deployments.



How to deal with it, I have been doing the same and it was/is working in older version of Jmeter 2.13, recently I upgraded to latest version 5.0 and facing this issue.



Could anyone help me out on this.



Thanks










share|improve this question



























    1















    I can see the whole number for Throughput in Jmeter 5.0, if I double click against each of the sampler.
    enter image description here



    But it doesn't appear when I export the same report in .csv file.
    enter image description here



    It is round off in the CSV file, and I need to have the whole number so that I can compare with Baseline and Prior deployments.



    How to deal with it, I have been doing the same and it was/is working in older version of Jmeter 2.13, recently I upgraded to latest version 5.0 and facing this issue.



    Could anyone help me out on this.



    Thanks










    share|improve this question

























      1












      1








      1








      I can see the whole number for Throughput in Jmeter 5.0, if I double click against each of the sampler.
      enter image description here



      But it doesn't appear when I export the same report in .csv file.
      enter image description here



      It is round off in the CSV file, and I need to have the whole number so that I can compare with Baseline and Prior deployments.



      How to deal with it, I have been doing the same and it was/is working in older version of Jmeter 2.13, recently I upgraded to latest version 5.0 and facing this issue.



      Could anyone help me out on this.



      Thanks










      share|improve this question














      I can see the whole number for Throughput in Jmeter 5.0, if I double click against each of the sampler.
      enter image description here



      But it doesn't appear when I export the same report in .csv file.
      enter image description here



      It is round off in the CSV file, and I need to have the whole number so that I can compare with Baseline and Prior deployments.



      How to deal with it, I have been doing the same and it was/is working in older version of Jmeter 2.13, recently I upgraded to latest version 5.0 and facing this issue.



      Could anyone help me out on this.



      Thanks







      csv jmeter throughput






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 '18 at 9:20









      Bajrang BadaikBajrang Badaik

      1359




      1359
























          2 Answers
          2






          active

          oldest

          votes


















          1














          Looking into Synthesis Report plugin source



          new RateRenderer("#.0"), // Throughput 


          I don't see easy way of getting the full throughput number as it is being cut to one decimal number.



          I would recommend going for Summary Report Listener instead, looking into its source you will have 5 decimal points in the resulting table.



          new DecimalFormat("#.00000"),      // Throughput //$NON-NLS-1$


          Also be aware that you can use Merge Results tool in order to combine results of 2 test runs into a single .jtl file and provide difference prefixes to different runs. Once done you will be able to visualize the difference in throughput for 2 test runs using i.e. Transactions Per Second listener



          enter image description here



          You can install Merge Results Tool using JMeter Plugins Manager:



          enter image description here






          share|improve this answer
























          • Thanks Dmitri Yes, the Throughput number is limited to 1 decimal point in the "jp@gc - Synthesis Report (filtered)" Listener Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager

            – Bajrang Badaik
            Nov 21 '18 at 4:54



















          0














          The Throughput number is limited to 1 decimal point in the jp@gc - Synthesis Report (filtered) Listener



          Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners



          This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager



          But I needed to use only the jp@gc - Synthesis Report (filtered) Listener as I have to use both 90% Line Response Time and Std. Dev. metrics in my custom report, also it has the RegExp filtering capabilities which the above two in-built Listeners are not having.



          Hence, have found a Workaround:
          Replaced the following older Jar files manually into the latest Jmeter 5.0, and it works.



          -JMeterPlugins-Standard.jar
          -JMeterPlugins-Extras.jar
          -JMeterPlugins-ExtrasLibs.jar


          This helps me to have the whole Throughput number from the "jp@gc - Synthesis Report (filtered)" Listener






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53389766%2ffacing-round-off-issue-with-jmeter-throughput-metric-in-exported-csv-file-in-jme%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Looking into Synthesis Report plugin source



            new RateRenderer("#.0"), // Throughput 


            I don't see easy way of getting the full throughput number as it is being cut to one decimal number.



            I would recommend going for Summary Report Listener instead, looking into its source you will have 5 decimal points in the resulting table.



            new DecimalFormat("#.00000"),      // Throughput //$NON-NLS-1$


            Also be aware that you can use Merge Results tool in order to combine results of 2 test runs into a single .jtl file and provide difference prefixes to different runs. Once done you will be able to visualize the difference in throughput for 2 test runs using i.e. Transactions Per Second listener



            enter image description here



            You can install Merge Results Tool using JMeter Plugins Manager:



            enter image description here






            share|improve this answer
























            • Thanks Dmitri Yes, the Throughput number is limited to 1 decimal point in the "jp@gc - Synthesis Report (filtered)" Listener Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager

              – Bajrang Badaik
              Nov 21 '18 at 4:54
















            1














            Looking into Synthesis Report plugin source



            new RateRenderer("#.0"), // Throughput 


            I don't see easy way of getting the full throughput number as it is being cut to one decimal number.



            I would recommend going for Summary Report Listener instead, looking into its source you will have 5 decimal points in the resulting table.



            new DecimalFormat("#.00000"),      // Throughput //$NON-NLS-1$


            Also be aware that you can use Merge Results tool in order to combine results of 2 test runs into a single .jtl file and provide difference prefixes to different runs. Once done you will be able to visualize the difference in throughput for 2 test runs using i.e. Transactions Per Second listener



            enter image description here



            You can install Merge Results Tool using JMeter Plugins Manager:



            enter image description here






            share|improve this answer
























            • Thanks Dmitri Yes, the Throughput number is limited to 1 decimal point in the "jp@gc - Synthesis Report (filtered)" Listener Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager

              – Bajrang Badaik
              Nov 21 '18 at 4:54














            1












            1








            1







            Looking into Synthesis Report plugin source



            new RateRenderer("#.0"), // Throughput 


            I don't see easy way of getting the full throughput number as it is being cut to one decimal number.



            I would recommend going for Summary Report Listener instead, looking into its source you will have 5 decimal points in the resulting table.



            new DecimalFormat("#.00000"),      // Throughput //$NON-NLS-1$


            Also be aware that you can use Merge Results tool in order to combine results of 2 test runs into a single .jtl file and provide difference prefixes to different runs. Once done you will be able to visualize the difference in throughput for 2 test runs using i.e. Transactions Per Second listener



            enter image description here



            You can install Merge Results Tool using JMeter Plugins Manager:



            enter image description here






            share|improve this answer













            Looking into Synthesis Report plugin source



            new RateRenderer("#.0"), // Throughput 


            I don't see easy way of getting the full throughput number as it is being cut to one decimal number.



            I would recommend going for Summary Report Listener instead, looking into its source you will have 5 decimal points in the resulting table.



            new DecimalFormat("#.00000"),      // Throughput //$NON-NLS-1$


            Also be aware that you can use Merge Results tool in order to combine results of 2 test runs into a single .jtl file and provide difference prefixes to different runs. Once done you will be able to visualize the difference in throughput for 2 test runs using i.e. Transactions Per Second listener



            enter image description here



            You can install Merge Results Tool using JMeter Plugins Manager:



            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 20 '18 at 14:25









            Dmitri TDmitri T

            70k33458




            70k33458













            • Thanks Dmitri Yes, the Throughput number is limited to 1 decimal point in the "jp@gc - Synthesis Report (filtered)" Listener Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager

              – Bajrang Badaik
              Nov 21 '18 at 4:54



















            • Thanks Dmitri Yes, the Throughput number is limited to 1 decimal point in the "jp@gc - Synthesis Report (filtered)" Listener Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager

              – Bajrang Badaik
              Nov 21 '18 at 4:54

















            Thanks Dmitri Yes, the Throughput number is limited to 1 decimal point in the "jp@gc - Synthesis Report (filtered)" Listener Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager

            – Bajrang Badaik
            Nov 21 '18 at 4:54





            Thanks Dmitri Yes, the Throughput number is limited to 1 decimal point in the "jp@gc - Synthesis Report (filtered)" Listener Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager

            – Bajrang Badaik
            Nov 21 '18 at 4:54













            0














            The Throughput number is limited to 1 decimal point in the jp@gc - Synthesis Report (filtered) Listener



            Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners



            This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager



            But I needed to use only the jp@gc - Synthesis Report (filtered) Listener as I have to use both 90% Line Response Time and Std. Dev. metrics in my custom report, also it has the RegExp filtering capabilities which the above two in-built Listeners are not having.



            Hence, have found a Workaround:
            Replaced the following older Jar files manually into the latest Jmeter 5.0, and it works.



            -JMeterPlugins-Standard.jar
            -JMeterPlugins-Extras.jar
            -JMeterPlugins-ExtrasLibs.jar


            This helps me to have the whole Throughput number from the "jp@gc - Synthesis Report (filtered)" Listener






            share|improve this answer




























              0














              The Throughput number is limited to 1 decimal point in the jp@gc - Synthesis Report (filtered) Listener



              Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners



              This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager



              But I needed to use only the jp@gc - Synthesis Report (filtered) Listener as I have to use both 90% Line Response Time and Std. Dev. metrics in my custom report, also it has the RegExp filtering capabilities which the above two in-built Listeners are not having.



              Hence, have found a Workaround:
              Replaced the following older Jar files manually into the latest Jmeter 5.0, and it works.



              -JMeterPlugins-Standard.jar
              -JMeterPlugins-Extras.jar
              -JMeterPlugins-ExtrasLibs.jar


              This helps me to have the whole Throughput number from the "jp@gc - Synthesis Report (filtered)" Listener






              share|improve this answer


























                0












                0








                0







                The Throughput number is limited to 1 decimal point in the jp@gc - Synthesis Report (filtered) Listener



                Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners



                This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager



                But I needed to use only the jp@gc - Synthesis Report (filtered) Listener as I have to use both 90% Line Response Time and Std. Dev. metrics in my custom report, also it has the RegExp filtering capabilities which the above two in-built Listeners are not having.



                Hence, have found a Workaround:
                Replaced the following older Jar files manually into the latest Jmeter 5.0, and it works.



                -JMeterPlugins-Standard.jar
                -JMeterPlugins-Extras.jar
                -JMeterPlugins-ExtrasLibs.jar


                This helps me to have the whole Throughput number from the "jp@gc - Synthesis Report (filtered)" Listener






                share|improve this answer













                The Throughput number is limited to 1 decimal point in the jp@gc - Synthesis Report (filtered) Listener



                Whereas we can still get the Throughput number upto 5 decimal point in Summary & Aggregate Report Listeners



                This only happens with the latest Jmeter version along with the latest Plugins, and Plugin Manager



                But I needed to use only the jp@gc - Synthesis Report (filtered) Listener as I have to use both 90% Line Response Time and Std. Dev. metrics in my custom report, also it has the RegExp filtering capabilities which the above two in-built Listeners are not having.



                Hence, have found a Workaround:
                Replaced the following older Jar files manually into the latest Jmeter 5.0, and it works.



                -JMeterPlugins-Standard.jar
                -JMeterPlugins-Extras.jar
                -JMeterPlugins-ExtrasLibs.jar


                This helps me to have the whole Throughput number from the "jp@gc - Synthesis Report (filtered)" Listener







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 21 '18 at 5:01









                Bajrang BadaikBajrang Badaik

                1359




                1359






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53389766%2ffacing-round-off-issue-with-jmeter-throughput-metric-in-exported-csv-file-in-jme%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                    Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

                    A Topological Invariant for $pi_3(U(n))$