Skip to content
This repository has been archived by the owner on Aug 30, 2018. It is now read-only.

TeePublic/heroku-buildpack-logstash

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 

Repository files navigation

Heroku Buildpack for Logstash

This buildpack downloads and installs Logstash into a Heroku app slug. It is a fork of omc/heroku-buildpack-kibana.

Usage

As a standalone buildpack:

# Create a new project with the --buildpack option
$ heroku create --buildpack https://github.com/bustedtees/heroku-buildpack-logstash

# ...Or update an existing project with heroku buildpacks:set
$ heroku buildpacks:set https://github.com/bustedtees/heroku-buildpack-logstash

# Let the buildpack know where to find Logstash
$ heroku config:set DOWNLOAD_URL="https://artifacts.elastic.co/downloads/logstash/logstash-6.3.2.tar.gz"

# Let Logstash know where to find Elasticsearch
$ heroku config:set ELASTICSEARCH_URL="https://logstashuser:logstashpass@host.region.bonsai.io"

# Create a Procfile to run the Logstash web server
$ cat Procfileg
web: logstash agent -f logstash.conf

# Create a logstash.conf
$ ...

# Push the above to trigger a deploy
$ git push heroku master

# Verify and profit!
$ heroku open

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%