# File lib/phusion_passenger/analytics_logger.rb, line 82
                def end_measure(name, error_encountered = false)
                        times = NativeSupport.process_times
                        if error_encountered
                                message "FAIL: #{name} (#{current_timestamp.to_s(36)},#{times.utime.to_s(36)},#{times.stime.to_s(36)})"
                        else
                                message "END: #{name} (#{current_timestamp.to_s(36)},#{times.utime.to_s(36)},#{times.stime.to_s(36)})"
                        end
                end