Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Extracting Symmetrix Data with Orca


Listing 1 Configuration file

# Orca configuration file for orcallator files.
#
# This config file is for processing Symmetrix performance logs
# Tom Kranz - [email protected]

base_dir        /usr/local/orca/var/orca/rrd/orcallator
rrd_dir            .
state_file        symmetrix.orca.state
html_dir        /usr/local/orca/html/symmetrix
expire_images        1
find_times        0:10 1:00 6:00 12:00 19:00
# This defines who gets warning emails - set to your address
warn_email        <your_sysadmin_email_address>
late_interval        interval + 30

# Here we define the stats group and the data to plot
group symmetrix {
find_files        /usr/local/orca/logs/symmetrix/probe-\d{4}-\d{2} \
                  -\d{2}(?:-\d{3,})?(?:\.(?:Z|gz|bz2))?
column_description    first_line
date_source        column_name timestamp
interval        300
}

html_top_title        Symmetrix stats

html_page_header
    <font face="Arial,Helvetica">
        Symmetrix performance stats
    </font>

html_page_footer
    <font face="Arial,Helvetica">
        These plots brought to you by your local system administrator.
    </font>

plot {
title            I/O Reads
source            symmetrix
data            (.*\d)ioread
legend            $1
y_legend        I/O Read/sec 
data_type        guage
required        1
plot_min        0
line_type        line2
}

plot {
title            I/O Writes
source            symmetrix
data            (.*\d)iowrite
legend            $1
y_legend        I/O Writes/sec
data_type        guage
required        1
plot_min        0
line_type        line2
}

plot {
title            KB read
source            symmetrix
data            (.*\d)kbread
legend            $1
y_legend        KB Reads/sec
data_type        guage
required        1
plot_min        0
line_type        line2
}

plot {
title            KB written
source            symmetrix
data            (.*\d)kbwrite
legend            $1
y_legend        KB written/sec
data_type        guage
required        1
plot_min        0
line_type        line2
}

plot {
title            Cache Reads
source            symmetrix
data            (.*\d)cacheread
legend            $1
y_legend        Cache reads/sec
data_type        guage
required        1
plot_min        0
line_type        line2
}

plot {
title            Cache Writes
source            symmetrix
data            (.*\d)cachewrite
legend            $1
y_legend        Cache Writes/sec
data_type        guage
required        1
plot_min        0
line_type        line2
}

plot {
title            Sequential Reads
source            symmetrix
data            (.*\d)seqread
legend            $1
y_legend        Sequential Reads
data_type        guage
required        1
plot_min        0
line_type        line2
}

plot {
title            Write Pending Tracks
source            symmetrix
data            (.*\d)wptracks
legend            $1
y_legend        Write Pending Tracks
data_type        guage
required        1
plot_min        0
line_type        line2
}


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.