From: Florian Forster Date: Fri, 12 Aug 2016 13:22:49 +0000 (+0200) Subject: grpc plugin: Implement the option. X-Git-Tag: collectd-5.6.0~35^2~1 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=a686d631974bb63e9b9d9500365673240b24fb3e;p=collectd.git grpc plugin: Implement the option. This allows the gRPC plugin to send metrics, via gRPC, to another collectd instance or other implementation of the "Collectd" gRPC service. --- diff --git a/src/collectd.conf.in b/src/collectd.conf.in index e06465bf..e1e02a8a 100644 --- a/src/collectd.conf.in +++ b/src/collectd.conf.in @@ -574,11 +574,17 @@ # # -# +# # EnableSSL true # SSLRootCerts "/path/to/root.pem" # SSLServerCert "/path/to/server.pem" # SSLServerKey "/path/to/server.key" +# +# +# EnableSSL true +# SSLCACertificateFile "/path/to/root.pem" +# SSLCertificateFile "/path/to/client.pem" +# SSLCertificateKeyFile "/path/to/client.key" # # diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index 6d1547a6..d8faba58 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -2728,6 +2728,33 @@ The B homepage can be found at L. =over 4 +=item B I I + +The B statement sets the address of a server to which to send metrics +via the C function. + +The argument I may be a hostname, an IPv4 address, or an IPv6 address. + +Optionally, B may be specified as a configuration block which supports +the following options: + +=over 4 + +=item B B|B + +Whether to require SSL for outgoing connections. Default: false. + +=item B I + +=item B I + +=item B I + +Filenames specifying SSL certificate and key material to be used with SSL +connections. + +=back + =item B I I The B statement sets the network address to bind to. When multiple diff --git a/src/grpc.cc b/src/grpc.cc index a38abc1d..70c8e6c5 100644 --- a/src/grpc.cc +++ b/src/grpc.cc @@ -420,12 +420,60 @@ private: std::unique_ptr server_; }; /* class CollectdServer */ +class CollectdClient final +{ +public: + CollectdClient(std::shared_ptr channel) : stub_(Collectd::NewStub(channel)) { + } + + int DispatchValues(value_list_t const *vl) { + grpc::ClientContext ctx; + + DispatchValuesRequest req; + auto status = marshal_value_list(vl, req.mutable_value_list()); + if (!status.ok()) { + ERROR("grpc: Marshalling value_list_t failed."); + return -1; + } + + DispatchValuesResponse res; + auto stream = stub_->DispatchValues(&ctx, &res); + if (!stream->Write(req)) { + NOTICE("grpc: Broken stream."); + /* intentionally not returning. */ + } + + stream->WritesDone(); + status = stream->Finish(); + if (!status.ok()) { + ERROR ("grpc: Error while closing stream."); + return -1; + } + + return 0; + } /* int DispatchValues */ + +private: + std::unique_ptr stub_; +}; + static CollectdServer *server = nullptr; /* * collectd plugin interface */ extern "C" { + static void c_grpc_destroy_write_callback (void *ptr) { + delete (CollectdClient *) ptr; + } + + static int c_grpc_write(__attribute__((unused)) data_set_t const *ds, + value_list_t const *vl, + user_data_t *ud) { + CollectdClient *c = (CollectdClient *) ud->data; + return c->DispatchValues(vl); + } + static int c_grpc_config_listen(oconfig_item_t *ci) { if ((ci->values_num != 2) @@ -498,6 +546,78 @@ extern "C" { return 0; } /* c_grpc_config_listen() */ + static int c_grpc_config_server(oconfig_item_t *ci) + { + if ((ci->values_num != 2) + || (ci->values[0].type != OCONFIG_TYPE_STRING) + || (ci->values[1].type != OCONFIG_TYPE_STRING)) { + ERROR("grpc: The `%s` config option needs exactly " + "two string argument (address and port).", ci->key); + return -1; + } + + grpc::SslCredentialsOptions ssl_opts; + bool use_ssl = false; + + for (int i = 0; i < ci->children_num; i++) { + oconfig_item_t *child = ci->children + i; + + if (!strcasecmp("EnableSSL", child->key)) { + if (cf_util_get_boolean(child, &use_ssl)) { + return -1; + } + } + else if (!strcasecmp("SSLCACertificateFile", child->key)) { + char *certs = NULL; + if (cf_util_get_string(child, &certs)) { + return -1; + } + ssl_opts.pem_root_certs = read_file(certs); + } + else if (!strcasecmp("SSLCertificateKeyFile", child->key)) { + char *key = NULL; + if (cf_util_get_string(child, &key)) { + return -1; + } + ssl_opts.pem_private_key = read_file(key); + } + else if (!strcasecmp("SSLCertificateFile", child->key)) { + char *cert = NULL; + if (cf_util_get_string(child, &cert)) { + return -1; + } + ssl_opts.pem_cert_chain = read_file(cert); + } + else { + WARNING("grpc: Option `%s` not allowed in <%s> block.", + child->key, ci->key); + } + } + + auto node = grpc::string(ci->values[0].value.string); + auto service = grpc::string(ci->values[1].value.string); + auto addr = node + ":" + service; + + CollectdClient *client; + if (use_ssl) { + auto channel_creds = grpc::SslCredentials(ssl_opts); + auto channel = grpc::CreateChannel(addr, channel_creds); + client = new CollectdClient(channel); + } else { + auto channel = grpc::CreateChannel(addr, grpc::InsecureChannelCredentials()); + client = new CollectdClient(channel); + } + + auto callback_name = grpc::string("grpc/") + addr; + user_data_t ud = { + .data = client, + .free_func = c_grpc_destroy_write_callback, + }; + + plugin_register_write (callback_name.c_str(), c_grpc_write, &ud); + return 0; + } /* c_grpc_config_server() */ + static int c_grpc_config(oconfig_item_t *ci) { int i; @@ -509,6 +629,11 @@ extern "C" { if (c_grpc_config_listen(child)) return -1; } + else if (!strcasecmp("Server", child->key)) { + if (c_grpc_config_server(child)) + return -1; + } + else { WARNING("grpc: Option `%s` not allowed here.", child->key); }