summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/plugins/out_http/http.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fluent-bit/plugins/out_http/http.h')
-rw-r--r--src/fluent-bit/plugins/out_http/http.h103
1 files changed, 103 insertions, 0 deletions
diff --git a/src/fluent-bit/plugins/out_http/http.h b/src/fluent-bit/plugins/out_http/http.h
new file mode 100644
index 000000000..151658f31
--- /dev/null
+++ b/src/fluent-bit/plugins/out_http/http.h
@@ -0,0 +1,103 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+
+/* Fluent Bit
+ * ==========
+ * Copyright (C) 2015-2022 The Fluent Bit Authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef FLB_OUT_HTTP_H
+#define FLB_OUT_HTTP_H
+
+#define FLB_HTTP_OUT_MSGPACK FLB_PACK_JSON_FORMAT_NONE
+#define FLB_HTTP_OUT_GELF 20
+
+#define FLB_HTTP_CONTENT_TYPE "Content-Type"
+#define FLB_HTTP_MIME_MSGPACK "application/msgpack"
+#define FLB_HTTP_MIME_JSON "application/json"
+
+#ifdef FLB_HAVE_SIGNV4
+#ifdef FLB_HAVE_AWS
+#define FLB_HTTP_AWS_CREDENTIAL_PREFIX "aws_"
+#endif
+#endif
+
+struct flb_out_http {
+ /* HTTP Auth */
+ char *http_user;
+ char *http_passwd;
+
+ /* AWS Auth */
+#ifdef FLB_HAVE_SIGNV4
+#ifdef FLB_HAVE_AWS
+ int has_aws_auth;
+ struct flb_aws_provider *aws_provider;
+ const char *aws_region;
+ const char *aws_service;
+#endif
+#endif
+
+ /* Proxy */
+ const char *proxy;
+ char *proxy_host;
+ int proxy_port;
+
+ /* Output format */
+ int out_format;
+
+ int json_date_format;
+ flb_sds_t json_date_key;
+ flb_sds_t date_key; /* internal use */
+
+ /* HTTP URI */
+ char *uri;
+ char *host;
+ int port;
+
+ /* GELF fields */
+ struct flb_gelf_fields gelf_fields;
+
+ /* which record key to use as body */
+ flb_sds_t body_key;
+
+ struct flb_record_accessor *body_ra;
+
+ /* override headers with contents of the map in the key specified here */
+ flb_sds_t headers_key;
+
+ struct flb_record_accessor *headers_ra;
+
+ /* Include tag in header */
+ flb_sds_t header_tag;
+
+ /* Compression mode (gzip) */
+ int compress_gzip;
+
+ /* Allow duplicated headers */
+ int allow_dup_headers;
+
+ /* Log the response paylod */
+ int log_response_payload;
+
+ /* Upstream connection to the backend server */
+ struct flb_upstream *u;
+
+ /* Arbitrary HTTP headers */
+ struct mk_list *headers;
+
+ /* Plugin instance */
+ struct flb_output_instance *ins;
+};
+
+#endif