1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
/*
* Copyright (c) 2002-2017 Balabit
* Copyright (c) 2017 Laszlo Budai
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "stats/stats-cluster-logpipe.h"
#include "stats/stats-cluster.h"
static const gchar *tag_names[SC_TYPE_MAX] =
{
/* [SC_TYPE_DROPPED] = */ "dropped",
/* [SC_TYPE_PROCESSED] = */ "processed",
/* [SC_TYPE_QUEUED] = */ "queued",
/* [SC_TYPE_SUPPRESSED] = */ "suppressed",
/* [SC_TYPE_STAMP] = */ "stamp",
/* [SC_TYPE_DISCARDED] = */ "discarded",
/* [SC_TYPE_MATCHED] = */ "matched",
/* [SC_TYPE_NOT_MATCHED] = */ "not_matched",
/* [SC_TYPE_WRITTEN] = */ "written",
};
static void
_counter_group_logpipe_free(StatsCounterGroup *counter_group)
{
g_free(counter_group->counters);
}
static gboolean
_counter_group_logpipe_get_type_label(StatsCounterGroup *self, gint type, StatsClusterLabel *label)
{
if (type >= SC_TYPE_MAX)
return FALSE;
const gchar *type_name = tag_names[type];
if (type == SC_TYPE_WRITTEN)
type_name = "delivered";
*label = stats_cluster_label("result", type_name);
return TRUE;
}
static void
_counter_group_logpipe_init(StatsCounterGroupInit *self, StatsCounterGroup *counter_group)
{
counter_group->counters = g_new0(StatsCounterItem, SC_TYPE_MAX);
counter_group->capacity = SC_TYPE_MAX;
counter_group->counter_names = self->counter.names;
counter_group->get_type_label = _counter_group_logpipe_get_type_label;
counter_group->free_fn = _counter_group_logpipe_free;
}
void
stats_cluster_logpipe_key_set(StatsClusterKey *key, const gchar *name, StatsClusterLabel *labels, gsize labels_len)
{
stats_cluster_key_set(key, name, labels, labels_len, (StatsCounterGroupInit)
{
.counter.names = tag_names, .init = _counter_group_logpipe_init, .equals = NULL
});
}
void
stats_cluster_logpipe_key_legacy_set(StatsClusterKey *key, guint16 component, const gchar *id, const gchar *instance)
{
stats_cluster_key_legacy_set(key, component, id, instance, (StatsCounterGroupInit)
{
.counter.names = tag_names, .init = _counter_group_logpipe_init, .equals = NULL
});
}
void
stats_cluster_logpipe_key_add_legacy_alias(StatsClusterKey *key, guint16 component, const gchar *id,
const gchar *instance)
{
stats_cluster_key_add_legacy_alias(key, component, id, instance, (StatsCounterGroupInit)
{
.counter.names = tag_names, .init = _counter_group_logpipe_init, .equals = NULL
});
}
|