Git Product home page Git Product logo

rmq-msg-parser's Introduction

RabbitMQ Message Parser

A Python library for parsing rabbitmq messages from text file

Learn more https://mohewedy.medium.com/parse-rabbitmq-messages-2b2dec09280e

Install:

pip install --upgrade --force-reinstall git+https://github.com/mhewedy/rmq-msg-parser

Install in non-pip environment:

If your environment doesn't have pip, or you cannot install it, then follow the following steps:

  1. create two directories, one for code and other for data
    mkdir data rmqparser
  2. copy the code from rmqparser/messages.py into rmqparser/messages.py
    vim rmqparser/messages.py
    then paste the code from the link above
  3. copy the messages into data/my_rabbitmq_messages.txt ( see data/my_rabbitmq_messages.txt for a reference )
    vim data/my_rabbitmq_messages.txt
    then paste the messages into the opened vim file
  4. copy the code from main.py into main.py
    vim main.py
    then paste the code from the link above
  5. run the main.py file
    python main.py

Usage:

  1. list all messages:
from rmqparser import messages

print('list all messages:')
msgs = messages.get_messages(r'data/my_rabbitmq_messages.txt')
for msg in msgs:
    print(f"message id: {msg.id}, payload: {msg.payload}")
  1. filter by messages that has header contains "error":
from rmqparser import messages

print('\nfilter by messages that has header contains "error":')
msgs = messages.get_messages(r'data/my_rabbitmq_messages.txt', header_key_pattern='error')
for msg in msgs:
    print(f"message id: {msg.id}, payload: {msg.payload}, filtered_headers: {msg.filtered_headers}")
  1. group messages that has header contains "exception":
from rmqparser import messages

print('\ngroup messages that has header contains "exception":')
grouped_messages = messages.group_by_filtered_headers(r'data/my_rabbitmq_messages.txt', header_key_pattern='exception')
for key, value in grouped_messages.items():
    print("Header:", key)
    for msg in value:
        print(f"message id: {msg.id}, payload: {msg.payload}, filtered_headers: {msg.filtered_headers}")

rmq-msg-parser's People

Contributors

mhewedy avatar

Stargazers

 avatar Hassan Refaat avatar

Watchers

 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.