Giter Site home page Giter Site logo

stdin2rabbitmq's Introduction

stdin2rabbitmq

Build Status codecov

explaination

The idea behind this is to be a super small and super fast script to use apache CustomLog "|stdin2rabbitmq" to send apache access logs to rabbitmq to be later consumed.

usage

params:

  • debug: show debug info (false)
  • host: rabbitmq host (localhost)
  • port: rabbitmq port (ampq: 5672)
  • queue: rabbitmq queue name (logs)
  • rabbituser: rabbitmq username (guest)
  • rabbitpass: rabbitmq password (guest)
echo "asdf" | stdin2rabbitmq -debug -host localhost -port 5555 -queue myqueue --rabbituser myuser --rabitpass mypass
The message is: asdf
amqp://guest:guest@localhost:5672/
2018/01/19 15:06:26  [x] Sent asdf

the result

./rabbitmqadmin get queue=myqueue
+-------------+----------+---------------+---------+---------------+------------------+-------------+
| routing_key | exchange | message_count | payload | payload_bytes | payload_encoding | redelivered |
+-------------+----------+---------------+---------+---------------+------------------+-------------+
| myqueue     |          | 22            | asdf    | 4             | string           | True        |
+-------------+----------+---------------+---------+---------------+------------------+-------------+

job done.

The main use case I have for this tool is to use it in combination with Apache's CustomLog Piped logging feature. In your apache conf:

CustomLog "|$/usr/bin/stdin2rabbitmq -host localhost -port 5555 -queue myqueue --rabbituser myuser --rabitpass mypass" "combined"

stdin2rabbitmq's People

Contributors

estahn avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.