npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cinovo-syslog-pipe

v0.0.7

Published

Pipe syslog to cinovo-logger.

Downloads

3

Readme

                                                   ___
       __                                         /\_ \
  ___ /\_\    ___     ___   __  __    ___         \//\ \     ___      __      __      __   _ __
 /'___\/\ \ /' _ `\  / __`\/\ \/\ \  / __`\  _______\ \ \   / __`\  /'_ `\  /'_ `\  /'__`\/\`'__\
/\ \__/\ \ \/\ \/\ \/\ \L\ \ \ \_/ |/\ \L\ \/\______\\_\ \_/\ \L\ \/\ \L\ \/\ \L\ \/\  __/\ \ \/
\ \____\\ \_\ \_\ \_\ \____/\ \___/ \ \____/\/______//\____\ \____/\ \____ \ \____ \ \____\\ \_\
 \/____/ \/_/\/_/\/_/\/___/  \/__/   \/___/          \/____/\/___/  \/___L\ \/___L\ \/____/ \/_/
                                                                      /\____/ /\____/
                                                                      \_/__/  \_/__/

cinovo-syslog-pipe

cinovo-syslog-pipe can forward syslog udp packages to cinovo-logger. It can help you to send logs from your system to AWS SQS or SNS.

Getting started

At first you must install the pipe

npm install -g cinovo-syslog-pipe

Next you can run it

syslogpipe --port=8514 --console

Forward your local syslog to 8514

You must configure a forwarding rule in your syslogd.

/etc/rsyslog.conf

*.* @localhost:8514

Restart your syslogd.

Log something to syslog

Send a message to your local syslog.

logger "test"

You should now se the log on your console.

Done

Now you listen on port 8514 for udp packages in thr syslog format which are printed to console.

CLI

You can start the pipe with syslogpipe.

Available parameters

  • --port: Number - UDP port to listen on
  • --tcp: activate tcp mode (optiona)

Activate Endpoint

Console

  • --console: activate the console endpoint

AWS

SQS
  • --aws-region: String -
  • --aws-sqs-queue: String -
  • --aws-access-key-id: String -
  • --aws-secret-access-key: String -
SNS
  • --aws-region: String -
  • --aws-sns-topic: String -
  • --aws-access-key-id: String -
  • --aws-secret-access-key: String -

API

You could also use the pipe within node as a module.

udp(port, logger)

Listening on port for udp packages and forwarding them to an instance of cinovo-logger.

  • port: Number
  • logger: Logger

tcp(port, logger)

Listening on port for tcp packages and forwarding them to an instance of cinovo-logger.

  • port: Number
  • logger: Logger