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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
/*
* Copyright (c) 2024 Axoflow
* Copyright (c) 2023-2024 Attila Szakacs <attila.szakacs@axoflow.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; 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 "otel-dest.hpp"
#include "otel-dest-worker.hpp"
#define get_DestDriver(s) (((OtelDestDriver *) s)->cpp)
using namespace syslogng::grpc::otel;
/* C++ Implementations */
DestDriver::DestDriver(OtelDestDriver *s)
: super(s), compression(false), batch_bytes(4 * 1000 * 1000)
{
credentials_builder_wrapper.self = &credentials_builder;
}
void
DestDriver::set_url(const char *url_)
{
url.assign(url_);
}
const std::string &
DestDriver::get_url() const
{
return url;
}
void
DestDriver::set_compression(bool compression_)
{
compression = compression_;
}
bool
DestDriver::get_compression() const
{
return compression;
}
void
DestDriver::set_batch_bytes(size_t batch_bytes_)
{
batch_bytes = batch_bytes_;
}
size_t
DestDriver::get_batch_bytes() const
{
return batch_bytes;
}
void
DestDriver::add_extra_channel_arg(std::string name, long value)
{
int_extra_channel_args.push_back(std::pair<std::string, long> {name, value});
}
void
DestDriver::add_extra_channel_arg(std::string name, std::string value)
{
string_extra_channel_args.push_back(std::pair<std::string, std::string> {name, value});
}
void
DestDriver::add_header(std::string name, std::string value)
{
std::transform(name.begin(), name.end(), name.begin(), ::tolower);
headers.push_back(std::pair<std::string, std::string> {name, value});
}
const char *
DestDriver::generate_persist_name()
{
static char persist_name[1024];
if (super->super.super.super.super.persist_name)
g_snprintf(persist_name, sizeof(persist_name), "opentelemetry.%s",
super->super.super.super.super.persist_name);
else
g_snprintf(persist_name, sizeof(persist_name), "opentelemetry(%s)",
url.c_str());
return persist_name;
}
const char *
DestDriver::format_stats_key(StatsClusterKeyBuilder *kb)
{
stats_cluster_key_builder_add_legacy_label(kb, stats_cluster_label("driver", "opentelemetry"));
stats_cluster_key_builder_add_legacy_label(kb, stats_cluster_label("url", url.c_str()));
return NULL;
}
LogThreadedDestWorker *
DestDriver::construct_worker(int worker_index)
{
return DestWorker::construct(&super->super, worker_index);
}
bool
DestDriver::init()
{
if (url.length() == 0)
{
msg_error("OpenTelemetry: url() option is mandatory",
log_pipe_location_tag(&super->super.super.super.super));
return false;
}
if (!credentials_builder.validate())
{
return false;
}
if (!log_threaded_dest_driver_init_method(&this->super->super.super.super.super))
return false;
log_threaded_dest_driver_register_aggregated_stats(&this->super->super);
StatsClusterKeyBuilder *kb = stats_cluster_key_builder_new();
format_stats_key(kb);
metrics.init(kb, log_pipe_is_internal(&super->super.super.super.super) ? STATS_LEVEL3 : STATS_LEVEL1);
return true;
}
bool
DestDriver::deinit()
{
metrics.deinit();
return log_threaded_dest_driver_deinit_method(&super->super.super.super.super);
}
GrpcClientCredentialsBuilderW *
DestDriver::get_credentials_builder_wrapper()
{
return &credentials_builder_wrapper;
}
/* C Wrappers */
void
otel_dd_set_url(LogDriver *s, const gchar *url)
{
get_DestDriver(s)->set_url(url);
}
void
otel_dd_set_compression(LogDriver *s, gboolean enable)
{
get_DestDriver(s)->set_compression(enable);
}
void
otel_dd_set_batch_bytes(LogDriver *s, glong b)
{
get_DestDriver(s)->set_batch_bytes((size_t) b);
}
void
otel_dd_add_int_channel_arg(LogDriver *s, const gchar *name, glong value)
{
get_DestDriver(s)->add_extra_channel_arg(name, value);
}
void
otel_dd_add_string_channel_arg(LogDriver *s, const gchar *name, const gchar *value)
{
get_DestDriver(s)->add_extra_channel_arg(name, value);
}
void
otel_dd_add_header(LogDriver *s, const gchar *name, const gchar *value)
{
get_DestDriver(s)->add_header(name, value);
}
GrpcClientCredentialsBuilderW *
otel_dd_get_credentials_builder(LogDriver *s)
{
return get_DestDriver(s)->get_credentials_builder_wrapper();
}
static const gchar *
_format_stats_key(LogThreadedDestDriver *s, StatsClusterKeyBuilder *kb)
{
return get_DestDriver(s)->format_stats_key(kb);
}
static const gchar *
_generate_persist_name(const LogPipe *s)
{
return get_DestDriver(s)->generate_persist_name();
}
static gboolean
_init(LogPipe *s)
{
return get_DestDriver(s)->init();
}
static gboolean
_deinit(LogPipe *s)
{
return get_DestDriver(s)->deinit();
}
static LogThreadedDestWorker *
_construct_worker(LogThreadedDestDriver *s, gint worker_index)
{
return get_DestDriver(s)->construct_worker(worker_index);
}
static void
_free(LogPipe *s)
{
delete get_DestDriver(s);
log_threaded_dest_driver_free(s);
}
void
otel_dd_init_super(LogThreadedDestDriver *s, GlobalConfig *cfg)
{
log_threaded_dest_driver_init_instance(s, cfg);
s->super.super.super.init = _init;
s->super.super.super.deinit = _deinit;
s->super.super.super.free_fn = _free;
s->super.super.super.generate_persist_name = _generate_persist_name;
s->worker.construct = _construct_worker;
s->stats_source = stats_register_type("opentelemetry");
s->format_stats_key = _format_stats_key;
s->metrics.raw_bytes_enabled = TRUE;
}
LogDriver *
otel_dd_new(GlobalConfig *cfg)
{
OtelDestDriver *self = g_new0(OtelDestDriver, 1);
otel_dd_init_super(&self->super, cfg);
self->cpp = new DestDriver(self);
return &self->super.super.super;
}
|