#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# +------------------------------------------------------------------+
# |             ____ _               _        __  __ _  __           |
# |            / ___| |__   ___  ___| | __   |  \/  | |/ /           |
# |           | |   | '_ \ / _ \/ __| |/ /   | |\/| | ' /            |
# |           | |___| | | |  __/ (__|   <    | |  | | . \            |
# |            \____|_| |_|\___|\___|_|\_\___|_|  |_|_|\_\           |
# |                                                                  |
# | Copyright Mathias Kettner 2016             mk@mathias-kettner.de |
# +------------------------------------------------------------------+
#
# This file is part of Check_MK.
# The official homepage is at http://mathias-kettner.de/check_mk.
#
# check_mk is free software;  you can redistribute it and/or modify it
# under the  terms of the  GNU General Public License  as published by
# the Free Software Foundation in version 2.  check_mk is  distributed
# in the hope that it will be useful, but WITHOUT ANY WARRANTY;  with-
# out even the implied warranty of  MERCHANTABILITY  or  FITNESS FOR A
# PARTICULAR PURPOSE. See the  GNU General Public License for more de-
# tails. You should have  received  a copy of the  GNU  General Public
# License along with GNU Make; see the file  COPYING.  If  not,  write
# to the Free Software Foundation, Inc., 51 Franklin St,  Fifth Floor,
# Boston, MA 02110-1301 USA.


# <<<oracle_performance:sep(124)>>>
# XE|SGA_info|Maximum SGA Size|367439872


def inv_oracle_performance(parsed, status_data_tree):
    status_node = status_data_tree.get_list("software.applications.oracle.sga:")
    for entry, entryinfo in parsed.items():
        if "SGA_info" in entryinfo:
            sga_data = entryinfo["SGA_info"]
            status_node.append({
                "sid"                   : entry,
                "fixed_size"            : sga_data.get("Fixed SGA Size"),
                "max_size"              : sga_data.get("Maximum SGA Size"),
                "redo_buffer"           : sga_data.get("Redo Buffers"),
                "buf_cache_size"        : sga_data.get("Buffer Cache Size"),
                "in_mem_area_size"      : sga_data.get("In-Memory Area Size"),
                "shared_pool_size"      : sga_data.get("Shared Pool Size"),
                "large_pool_size"       : sga_data.get("Large Pool Size"),
                "java_pool_size"        : sga_data.get("Java Pool Size"),
                "streams_pool_size"     : sga_data.get("Streams Pool Size"),
                "shared_io_pool_size"   : sga_data.get("Shared IO Pool Size"),
                "data_trans_cache_size" : sga_data.get("Data Transfer Cache Size"),
                "granule_size"          : sga_data.get("Granule Size"),
                "start_oh_shared_pool"  : sga_data.get("Startup overhead in Shared Pool"),
                "free_mem_avail"        : sga_data.get("Free SGA Memory Available"),
            })


inv_info['oracle_performance'] = {
    'inv_function': inv_oracle_performance,
    'has_status_data': True,
}
