Skip to content

sudhircirra/beats-output-http

 
 

Repository files navigation

beats-output-http

Outputter for the Elastic Beats platform that simply POSTs events to an HTTP endpoint.

Build Status

Usage

To add support for this output plugin to a beat, you have to import this plugin into your main beats package, like this:

package main

import (
	"os"

	"github.com/elastic/beats/filebeat/cmd"
	_ "github.com/sudhircirra/beats-output-http"
)

func main() {
	if err := cmd.RootCmd.Execute(); err != nil {
		os.Exit(1)
	}
}

Then configure the http output plugin in yourbeat.yaml:

output:
  http:
    hosts: ["some.example.com:80/foo"]

About

HTTP output producer for the Elastic Beats framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%