def panel_sensor_group(host, title, group, unit, width=None):
    panel = new_graph(title, width=width)

    add_metric(panel, host, 'sensors.%s.*.*' % (group))

    set_yaxis_units(panel, unit)
    return panel
Example #2
0
def panel_phone_credit_left(phone):
    panel = new_graph('Credits left')
    add_metric(panel, 'phones', phone + '.credit', [2], kind='services')
    set_decimals(panel, 2)
    set_yaxis_units(panel, "currencyEUR")

    return panel
Example #3
0
def panel_equivalent_a4_impressions(host, width=None):
    panel = new_graph('Equvalent impressions A4', width=width)

    add_metric(panel, host,
               'jetdirect.usage.equivalent_impressions_a4_letter.*.*')

    return panel
Example #4
0
def panel_phone_credit_use(phone):
    panel = new_graph('Credits use')
    add_metric(panel, 'phones', phone + '.credit', [2], scale=-1, nnder=True, kind='services')
    set_decimals(panel, 2)
    set_yaxis_units(panel, "currencyEUR")

    return panel
Example #5
0
def panel_iostat_queue_length(host, width=None):
    title = 'Avg. Queue length'
    panel = new_graph(title, width=width)

    add_metric(panel, host, "iostat.*.average_queue_length", [-2])

    return panel
Example #6
0
def panel_graphite_monitors(host, width=None):
    title = "Monitors"
    panel = new_graph(title, width=width)

    add_metric(panel, host, "graphite.carbon.agents.*.creates")
    add_metric(panel, host, "graphite.carbon.agents.*.errors")

    return panel
Example #7
0
def panel_graphite_cache(host, width=None):
    title = "Cache"
    panel = new_graph(title, width=width)

    add_metric(panel, host, "graphite.carbon.agents.*.cache.queries")
    add_metric(panel, host, "graphite.carbon.agents.*.cache.queues")

    return panel
Example #8
0
def panel_ready(host, width=None):
    panel = new_graph('Ready?', width=width)

    add_metric(panel, host, 'jetdirect.ready', 'Printer Ready')
    add_metric(panel, host, 'jetdirect.status', 'Printer Status')
    add_metric(panel, host, 'jetdirect.*.*.ready', [-3, -2])

    return panel
Example #9
0
def panel_library_lent_items_total(library):
    panel = new_graph('Lent items total')

    add_metric(panel,
               'libraries',
               library + '.lent_items.current.total', [2],
               kind='services')

    return panel
Example #10
0
def panel_graphite_updates(host, width=None):
    title = "Updates"
    panel = new_graph(title, width=width)

    add_metric(panel, host, "graphite.carbon.agents.*.metricsReceived")
    add_metric(panel, host, "graphite.carbon.agents.*.committedPoints")
    add_metric(panel, host, "graphite.carbon.agents.*.updateOperations")

    return panel
def panel_bus(host, width=None):
    title = 'Device changes per bus'
    panel = new_graph(title, width=width)

    add_metric(panel, host, 'sensors.bus.*', der=True)

    set_yaxis_labels(panel, 'changed devices')
    set_yaxis_minimum(panel, 'left', None)
    return panel
Example #12
0
def panel_length_average(host, base, width=None):
    title = "Average Line Length"
    panel = new_graph(title, width=width)

    add_metric(panel, host, '%s.total.length.average' % (base), 'Bytes')

    set_yaxis_units(panel, "bytes")

    return panel
def panel_website_requests_total(host, metric_base, width=None):
    title = "Total requests"
    panel = new_graph(title, width=width)

    add_metric(panel, host, '%s.total.count' % (metric_base), 'Requests', scale=True)

    set_yaxis_labels(panel, "req/s")

    return panel
def panel_network_bytes(host, title='Network bytes', width=None):
    panel = new_graph(title, width=width)

    add_metric(panel, host, 'network.*.rx_byte', [-2, -1])
    add_metric(panel, host, 'network.*.tx_byte', [-2, -1])

    set_yaxis_units(panel, "Bps")

    return panel
Example #15
0
def panel_diskspace_percent(host, width=None):
    title = 'Disk % free'
    panel = new_graph(title, width=width)

    add_metric(panel, host, "diskspace.*.byte_percentfree", [-2])

    set_yaxis_units(panel, "percent")

    return panel
Example #16
0
def panel_diskspace_bytes(host, width=None):
    title = 'Disk bytes available'
    panel = new_graph(title, width=width)

    add_metric(panel, host, "diskspace.*.byte_avail", [-2])

    set_yaxis_units(panel, "bytes")

    return panel
def panel_apache_workers_basic(host, width=None):
    title = "Workers (basic)"
    panel = new_graph(title, width=width)

    add_metric(panel, host, 'apache.localhost.BusyWorkers', 'Busy')
    add_metric(panel, host, 'apache.localhost.IdleWorkers', 'Idle')

    set_stacked_mode(panel)

    return panel
Example #18
0
def panel_supply(host, supply, supply_aspect, metric_base, metric_end, width=None, alias=None):
    if alias is None:
        alias = [-2, -1]
    panel = new_graph('%s %s' % (supply, supply_aspect), width=width)

    add_metric(panel, host, '%s.%s' % (metric_base, metric_end), alias)

    set_extended_colors(panel)

    return panel
def panel_network_packets(host, width=None):
    title = 'Network packets'
    panel = new_graph(title, width=width)

    add_metric(panel, host, 'network.*.rx_packets', [-2, -1])
    add_metric(panel, host, 'network.*.tx_packets', [-2, -1])

    set_yaxis_units(panel, "pps")

    return panel
def panel_network_drop_and_errors(host, width=None):
    title = 'Network packets'
    panel = new_graph(title, width=width)

    add_metric(panel, host, 'network.*.rx_drop', [-2, -1])
    add_metric(panel, host, 'network.*.rx_errors', [-2, -1])
    add_metric(panel, host, 'network.*.tx_drop', [-2, -1])
    add_metric(panel, host, 'network.*.tx_errors', [-2, -1])

    return panel
def panel_website_requests_per_user(host, metric_base, width=None):
    title = "Requests per User"
    panel = new_graph(title, width=width)

    add_metric(panel, host, '%s.user.*.count' % (metric_base), [-2], scale=True)

    set_yaxis_labels(panel, 'req/s')
    zero_missing_points(panel)

    return panel
def panel_website_requests_per_method(host, metric_base, width=None):
    title = "Requests per HTTP method"
    panel = new_graph(title, width=width)

    for method in METHODS:
        add_metric(panel, host, '%s.method.%s.count' % (metric_base, method), [-2], scale=True)

    set_yaxis_labels(panel, "req/s")

    return panel
Example #23
0
def panel_library_next_due_date(library):
    panel = new_graph('Next due date')

    add_metric(panel,
               'libraries',
               library + '.lent_items.next_due_date_days', [2],
               kind='services')

    set_yaxis_units(panel, "d")

    return panel
Example #24
0
def panel_load_kind(host, kind=1, cpu_count=False):
    title = "Load %sm" % (kind)
    panel = new_graph(title)

    add_metric(panel, host, 'loadavg.%s' % (str(kind).zfill(2)),
               'Load %sm' % kind)

    set_decimals(panel, 2)
    set_threshold_w_fallback(panel, cpu_count, host)

    return panel
Example #25
0
def panel_website_timing_total(host, metric_base, width=None):
    title = "Total request timings"
    panel = new_graph(title, width=width)

    add_metric(panel, host, '%s.total.duration.*' % (metric_base), [-1])

    connect_missing_points(panel)
    set_point_mode(panel)
    set_yaxis_units(panel, "ms")

    return panel
Example #26
0
def panel_impressions(host, width=None):
    panel = new_graph('Actual Impressions', width=width)

    add_metric(panel, host, 'jetdirect.usage.impressions.*.*')

    add_series_override(panel, '/units/', {
        'legend': False,
        'hiddenSeries': True
    })

    return panel
Example #27
0
def panel_library_lent_items_categories(library):
    panel = new_graph('Lent items by category')

    add_metric(panel,
               'libraries',
               library + '.lent_items.current.category.*', [6],
               kind='services')

    zero_missing_points(panel)

    return panel
def panel_website_timing_per_status(host, metric_base, status, alias, width=None):
    title = 'Status %s (%s)' % (status, alias)
    panel = new_graph(title, width=width)

    for p in TIMINGS:
        add_metric(panel, host, '%s.status.%s.duration.%s' % (metric_base, status, p[0]), p[1])

    connect_missing_points(panel)
    set_point_mode(panel)
    set_yaxis_units(panel, "ms")

    return panel
Example #29
0
def panel_count(host, base, kinds=['*'], prefix='All', by=None, width=None, zero_missing=False):
    title = prefix + ' Log Lines'
    if by:
        title += ' by ' + by
    panel = new_graph(title, width=width)

    for kind in kinds:
        add_metric(panel, host, '%s.%s.count' % (base, kind), [-2])

    set_yaxis_labels(panel, "Lines/min")
    zero_missing_points(panel)

    return panel
Example #30
0
def panel_website_timing_per_method(host, metric_base, width=None):
    title = "q50 request timings per HTTP method"
    panel = new_graph(title, width=width)

    for method in METHODS:
        add_metric(panel, host,
                   '%s.method.%s.duration.q50' % (metric_base, method), [-3])

    connect_missing_points(panel)
    set_point_mode(panel)
    set_yaxis_units(panel, "ms")

    return panel