123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- // SPDX-License-Identifier: GPL-3.0-or-later
- #include "exporting_engine.h"
- static struct engine *engine = NULL;
- void analytics_exporting_connectors_ssl(BUFFER *b)
- {
- #ifdef ENABLE_HTTPS
- if (netdata_ssl_exporting_ctx) {
- for (struct instance *instance = engine->instance_root; instance; instance = instance->next) {
- struct simple_connector_data *connector_specific_data = instance->connector_specific_data;
- if (SSL_connection(&connector_specific_data->ssl)) {
- buffer_strcat(b, "exporting");
- break;
- }
- }
- }
- #endif
- buffer_strcat(b, "|");
- }
- void analytics_exporting_connectors(BUFFER *b)
- {
- if (!engine)
- return;
- uint8_t count = 0;
- for (struct instance *instance = engine->instance_root; instance; instance = instance->next) {
- if (count)
- buffer_strcat(b, "|");
- switch (instance->config.type) {
- case EXPORTING_CONNECTOR_TYPE_GRAPHITE:
- buffer_strcat(b, "Graphite");
- break;
- case EXPORTING_CONNECTOR_TYPE_GRAPHITE_HTTP:
- buffer_strcat(b, "GraphiteHTTP");
- break;
- case EXPORTING_CONNECTOR_TYPE_JSON:
- buffer_strcat(b, "JSON");
- break;
- case EXPORTING_CONNECTOR_TYPE_JSON_HTTP:
- buffer_strcat(b, "JSONHTTP");
- break;
- case EXPORTING_CONNECTOR_TYPE_OPENTSDB:
- buffer_strcat(b, "OpenTSDB");
- break;
- case EXPORTING_CONNECTOR_TYPE_OPENTSDB_HTTP:
- buffer_strcat(b, "OpenTSDBHTTP");
- break;
- case EXPORTING_CONNECTOR_TYPE_PROMETHEUS_REMOTE_WRITE:
- #if ENABLE_PROMETHEUS_REMOTE_WRITE
- buffer_strcat(b, "PrometheusRemoteWrite");
- #endif
- break;
- case EXPORTING_CONNECTOR_TYPE_KINESIS:
- #if HAVE_KINESIS
- buffer_strcat(b, "Kinesis");
- #endif
- break;
- case EXPORTING_CONNECTOR_TYPE_PUBSUB:
- #if ENABLE_EXPORTING_PUBSUB
- buffer_strcat(b, "Pubsub");
- #endif
- break;
- case EXPORTING_CONNECTOR_TYPE_MONGODB:
- #if HAVE_MONGOC
- buffer_strcat(b, "MongoDB");
- #endif
- break;
- default:
- buffer_strcat(b, "Unknown");
- }
- count++;
- }
- }
- /**
- * Exporting Clean Engine
- *
- * Clean all variables allocated inside engine structure
- *
- * @param en a pointer to the structure that will be cleaned.
- */
- static void exporting_clean_engine()
- {
- if (!engine)
- return;
- #if HAVE_KINESIS
- if (engine->aws_sdk_initialized)
- aws_sdk_shutdown();
- #endif
- #if ENABLE_PROMETHEUS_REMOTE_WRITE
- if (engine->protocol_buffers_initialized)
- protocol_buffers_shutdown();
- #endif
- //Cleanup web api
- prometheus_clean_server_root();
- for (struct instance *instance = engine->instance_root; instance;) {
- struct instance *current_instance = instance;
- instance = instance->next;
- clean_instance(current_instance);
- }
- freez((void *)engine->config.hostname);
- freez(engine);
- }
- /**
- * Clean up the main exporting thread and all connector workers on Netdata exit
- *
- * @param ptr thread data.
- */
- static void exporting_main_cleanup(void *ptr)
- {
- struct netdata_static_thread *static_thread = (struct netdata_static_thread *)ptr;
- static_thread->enabled = NETDATA_MAIN_THREAD_EXITING;
- netdata_log_info("cleaning up...");
- if (!engine) {
- static_thread->enabled = NETDATA_MAIN_THREAD_EXITED;
- return;
- }
- engine->exit = 1;
- int found = 0;
- usec_t max = 2 * USEC_PER_SEC, step = 50000;
- for (struct instance *instance = engine->instance_root; instance; instance = instance->next) {
- if (!instance->exited) {
- found++;
- netdata_log_info("stopping worker for instance %s", instance->config.name);
- uv_mutex_unlock(&instance->mutex);
- instance->data_is_ready = 1;
- uv_cond_signal(&instance->cond_var);
- } else
- netdata_log_info("found stopped worker for instance %s", instance->config.name);
- }
- while (found && max > 0) {
- max -= step;
- netdata_log_info("Waiting %d exporting connectors to finish...", found);
- sleep_usec(step);
- found = 0;
- for (struct instance *instance = engine->instance_root; instance; instance = instance->next) {
- if (!instance->exited)
- found++;
- }
- }
- exporting_clean_engine();
- static_thread->enabled = NETDATA_MAIN_THREAD_EXITED;
- }
- /**
- * Exporting engine main
- *
- * The main thread used to control the exporting engine.
- *
- * @param ptr a pointer to netdata_static_structure.
- *
- * @return It always returns NULL.
- */
- void *exporting_main(void *ptr)
- {
- netdata_thread_cleanup_push(exporting_main_cleanup, ptr);
- engine = read_exporting_config();
- if (!engine) {
- netdata_log_info("EXPORTING: no exporting connectors configured");
- goto cleanup;
- }
- if (init_connectors(engine) != 0) {
- netdata_log_error("EXPORTING: cannot initialize exporting connectors");
- send_statistics("EXPORTING_START", "FAIL", "-");
- goto cleanup;
- }
- RRDSET *st_main_rusage = NULL;
- RRDDIM *rd_main_user = NULL;
- RRDDIM *rd_main_system = NULL;
- create_main_rusage_chart(&st_main_rusage, &rd_main_user, &rd_main_system);
- usec_t step_ut = localhost->rrd_update_every * USEC_PER_SEC;
- heartbeat_t hb;
- heartbeat_init(&hb);
- while (service_running(SERVICE_EXPORTERS)) {
- heartbeat_next(&hb, step_ut);
- engine->now = now_realtime_sec();
- if (mark_scheduled_instances(engine))
- prepare_buffers(engine);
- send_main_rusage(st_main_rusage, rd_main_user, rd_main_system);
- #ifdef UNIT_TESTING
- return NULL;
- #endif
- }
- cleanup:
- netdata_thread_cleanup_pop(1);
- return NULL;
- }
|