# beats_output_plugin_http **Repository Path**: monkcag3/beats_output_plugin_http ## Basic Information - **Project Name**: beats_output_plugin_http - **Description**: refer: https://github.com/raboof/beats-output-http - **Primary Language**: Go - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-23 - **Last Updated**: 2024-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README beats-output-http ================= Outputter for the Elastic Beats platform that simply POSTs events to an HTTP endpoint. [![Build Status](https://travis-ci.org/raboof/beats-output-http.svg?branch=master)](https://travis-ci.org/raboof/beats-output-http) ##### beats version 7.7.1 ##### platform supported : linux Usage ===== To add support for this output plugin to a beat, you have to import this plugin into your main beats package, like this: ``` go build -buildmode=plugin -o http.so main.go filebeat --plugin /path/to/http.so ``` Then configure the http output plugin in filebeat.yaml: ``` output: http: hosts: ["some.example.com:80/foo"] ```