View | Details | Raw Unified | Return to bug 57217
Collapse All | Expand All

(-)src/components/org/apache/jmeter/visualizers/StatVisualizer.java (-2 / +12 lines)
Lines 75-80 Link Here
75
            "average",                       //$NON-NLS-1$
75
            "average",                       //$NON-NLS-1$
76
            "aggregate_report_median",       //$NON-NLS-1$
76
            "aggregate_report_median",       //$NON-NLS-1$
77
            "aggregate_report_90%_line",     //$NON-NLS-1$
77
            "aggregate_report_90%_line",     //$NON-NLS-1$
78
            "aggregate_report_95%_line",     //$NON-NLS-1$
79
            "aggregate_report_99%_line",     //$NON-NLS-1$
78
            "aggregate_report_min",          //$NON-NLS-1$
80
            "aggregate_report_min",          //$NON-NLS-1$
79
            "aggregate_report_max",          //$NON-NLS-1$
81
            "aggregate_report_max",          //$NON-NLS-1$
80
            "aggregate_report_error%",       //$NON-NLS-1$
82
            "aggregate_report_error%",       //$NON-NLS-1$
Lines 118-132 Link Here
118
                    new Functor("getMedian"),  //$NON-NLS-1$
120
                    new Functor("getMedian"),  //$NON-NLS-1$
119
                    new Functor("getPercentPoint",  //$NON-NLS-1$
121
                    new Functor("getPercentPoint",  //$NON-NLS-1$
120
                            new Object[] { new Float(.900) }),
122
                            new Object[] { new Float(.900) }),
123
                    new Functor("getPercentPoint",  //$NON-NLS-1$
124
                            new Object[] { new Float(.950) }),
125
                    new Functor("getPercentPoint",  //$NON-NLS-1$
126
                            new Object[] { new Float(.990) }),
127
121
                    new Functor("getMin"),  //$NON-NLS-1$
128
                    new Functor("getMin"),  //$NON-NLS-1$
122
                    new Functor("getMax"),   //$NON-NLS-1$
129
                    new Functor("getMax"),   //$NON-NLS-1$
123
                    new Functor("getErrorPercentage"),   //$NON-NLS-1$
130
                    new Functor("getErrorPercentage"),   //$NON-NLS-1$
124
                    new Functor("getRate"),  //$NON-NLS-1$
131
                    new Functor("getRate"),  //$NON-NLS-1$
125
                    new Functor("getKBPerSecond")   //$NON-NLS-1$
132
                    new Functor("getKBPerSecond")   //$NON-NLS-1$
126
                },
133
                },
127
                new Functor[] { null, null, null, null, null, null, null, null, null, null },
134
                new Functor[] { null, null, null, null, null, null, null, null, null, null, null, null },
128
                new Class[] { String.class, Long.class, Long.class, Long.class, Long.class,
135
                new Class[] { String.class, Long.class, Long.class, Long.class, Long.class,
129
                              Long.class, Long.class, String.class, String.class, String.class });
136
                              Long.class,Long.class, Long.class, Long.class, String.class, 
137
                              String.class, String.class });
130
        clearData();
138
        clearData();
131
        init();
139
        init();
132
    }
140
    }
Lines 139-144 Link Here
139
            null, // Mean
147
            null, // Mean
140
            null, // median
148
            null, // median
141
            null, // 90%
149
            null, // 90%
150
            null, // 95%
151
            null, // 99%
142
            null, // Min
152
            null, // Min
143
            null, // Max
153
            null, // Max
144
            new NumberRenderer("#0.00%"), // Error %age //$NON-NLS-1$
154
            new NumberRenderer("#0.00%"), // Error %age //$NON-NLS-1$
(-)src/core/org/apache/jmeter/resources/messages.properties (+4 lines)
Lines 80-85 Link Here
80
aggregate_report_90=90%
80
aggregate_report_90=90%
81
aggregate_report_90%_line=90% Line
81
aggregate_report_90%_line=90% Line
82
aggregate_report_bandwidth=KB/sec
82
aggregate_report_bandwidth=KB/sec
83
aggregate_report_95=95%
84
aggregate_report_95%_line=95% Line
85
aggregate_report_99=99%
86
aggregate_report_99%_line=99% Line
83
aggregate_report_count=# Samples
87
aggregate_report_count=# Samples
84
aggregate_report_error=Error
88
aggregate_report_error=Error
85
aggregate_report_error%=Error %
89
aggregate_report_error%=Error %
(-)src/core/org/apache/jmeter/resources/messages_fr.properties (+4 lines)
Lines 73-78 Link Here
73
aggregate_report=Rapport agr\u00E9g\u00E9
73
aggregate_report=Rapport agr\u00E9g\u00E9
74
aggregate_report_90=90%
74
aggregate_report_90=90%
75
aggregate_report_90%_line=90e centile
75
aggregate_report_90%_line=90e centile
76
aggregate_report_95=95%
77
aggregate_report_95%_line=95e centile
78
aggregate_report_99=99%
79
aggregate_report_99%_line=99e centile
76
aggregate_report_bandwidth=Ko/sec
80
aggregate_report_bandwidth=Ko/sec
77
aggregate_report_count=\# Echantillons
81
aggregate_report_count=\# Echantillons
78
aggregate_report_error=Erreur
82
aggregate_report_error=Erreur

Return to bug 57217