A new utility for quickly interpreting multiple Bonnie++ benchmarks


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News A new utility for quickly interpreting multiple Bonnie++ benchmarks
# 1  
Old 07-02-2008
A new utility for quickly interpreting multiple Bonnie++ benchmarks

Wed, 02 Jul 2008 08:00:00 GMT
Yesterday I discussed the Bonnie++ tool, which can be used to benchmark filesystem performance. When you are tweaking a RAID and filesystem combination, you generally want to see whether your changes work in a positive manner across the board, and by how much. I created a utility called bonnie-to-chart to show the results of multiple Bonnie++ runs in either absolute or relative performance terms. It's primarily a Perl script that can be used together with the Open Flash Chart component.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Interpreting multiple values from a variable

Hi, I am writing a shell script which will check the status of a resource in a cluster and then display nicely to a user running the script at command line. Basically the script runs a status command and then pulls certain keywords from the return and then should display a concise status. ... (5 Replies)
Discussion started by: chris01010
5 Replies

2. UNIX for Dummies Questions & Answers

Looking for an X11 Utility - Send Keystrokes to Multiple Clients

A long time ago, I frequently used a small X11 utility that allows you to manage multiple systems at the same time. It worked by opening a small window that had a button you used to "Add" X Clients to it. These would be xterms on different systems for example. You would then type inside that... (5 Replies)
Discussion started by: Alon.Albert
5 Replies

3. UNIX for Dummies Questions & Answers

need solution for this quickly. please quickly.

Write a nawk script that will produce the following report: ***FIRST QUARTERLY REPORT*** ***CAMPAIGN 2004 CONTRIBUTIONS*** ------------------------------------------------------------------------- NAME PHONE Jan | ... (5 Replies)
Discussion started by: p.palakj.shah
5 Replies

4. UNIX and Linux Applications

Utility for Multiple windows

Iam looking for a utility in which i can run the same command in mutliple servers at the same time in multiple windows. I remember somebody mentioned to me about that,i would like to know if its available for unix servers as a windows application. I tried google for it but couldn't find any. Can... (8 Replies)
Discussion started by: Jartan
8 Replies
Login or Register to Ask a Question
SPEED(1SSL)							      OpenSSL							       SPEED(1SSL)

NAME
openssl-speed, speed - test library performance SYNOPSIS
openssl speed [-help] [-engine id] [-elapsed] [-evp algo] [-decrypt] [-rand file...] [-writerand file] [-primes num] [-seconds num] [-bytes num] [algorithm...] DESCRIPTION
This command is used to test the performance of cryptographic algorithms. To see the list of supported algorithms, use the list --digest-commands or list --cipher-commands command. The global CSPRNG is denoted by the rand algorithm name. OPTIONS
-help Print out a usage message. -engine id Specifying an engine (by its unique id string) will cause speed to attempt to obtain a functional reference to the specified engine, thus initialising it if needed. The engine will then be set as the default for all available algorithms. -elapsed When calculating operations- or bytes-per-second, use wall-clock time instead of CPU user time as divisor. It can be useful when testing speed of hardware engines. -evp algo Use the specified cipher or message digest algorithm via the EVP interface. If algo is an AEAD cipher, then you can pass <-aead> to benchmark a TLS-like sequence. And if algo is a multi-buffer capable cipher, e.g. aes-128-cbc-hmac-sha1, then -mb will time multi- buffer operation. -decrypt Time the decryption instead of encryption. Affects only the EVP testing. -rand file... A file or files containing random data used to seed the random number generator. Multiple files can be specified separated by an OS- dependent character. The separator is ; for MS-Windows, , for OpenVMS, and : for all others. [-writerand file] Writes random data to the specified file upon exit. This can be used with a subsequent -rand flag. -primes num Generate a num-prime RSA key and use it to run the benchmarks. This option is only effective if RSA algorithm is specified to test. -seconds num Run benchmarks for num seconds. -bytes num Run benchmarks on num-byte buffers. Affects ciphers, digests and the CSPRNG. [zero or more test algorithms] If any options are given, speed tests those algorithms, otherwise a pre-compiled grand selection is tested. COPYRIGHT
Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <https://www.openssl.org/source/license.html>. 1.1.1a 2018-12-18 SPEED(1SSL)