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

kube-superlog

v0.1.3

Published

Streams logs from all your pods at the same time

Downloads

3

Readme

kube-superlog

Does your kubernetes cluster have lots of instances of pods like this?:

$ kubectl get pods --namespace=thoughtdata
NAME                               READY     STATUS    RESTARTS   AGE
NAME                           READY     STATUS    RESTARTS   AGE
dashboard-1154738117-d78t5     1/1       Running   0          19h
dashboard-1154738117-h7w2m     1/1       Running   0          19h
distribution-914390011-mcj7t   1/1       Running   0          1d
distribution-914390011-v3s0h   1/1       Running   0          1d
gateway-1663823869-dplrz       1/1       Running   0          1d
gateway-1663823869-xcl0m       1/1       Running   0          1d
lambda-api-1230258314-zc9qc    1/1       Running   0          6d
nginx-3556664046-27rjd         2/2       Running   0          21h
nginx-3556664046-9vs1s         2/2       Running   0          21h
pshr-api-0                     1/1       Running   0          13h
rabbitmq-0                     1/1       Running   0          1d
rabbitmq-1                     1/1       Running   0          1d
rabbitmq-2                     1/1       Running   0          1d
rabbitmq-3                     1/1       Running   0          1d
redis-0                        2/2       Running   0          6d
redis-1                        2/2       Running   0          6d
redis-2                        2/2       Running   0          6d
redis-3                        2/2       Running   0          6d

What if you wanted to tail stream all the logs from your dashboard, distribution and gateway applications at the same time as they're an interacting collection of microservices?

Well now you can, with kube-superlog.

Simply do npm install -g kube-superlog and off you go.

$ ./bin/kube-superlog --namespace thoughtdata --label app=dashboard --label app=distribution --label app=gateway
  superlog Welcome to kube-superlog +0ms
  superlog Logging for namespace=thoughtdata +3ms
  superlog Logging the following labels: +0ms
  superlog  - app=dashboard +1ms
  superlog  - app=distribution +0ms
  superlog  - app=gateway +0ms
  superlog Please wait, loading pod list. +32ms
  superlog:exec kubectl --namespace=thoughtdata get pods -l app=dashboard --no-headers -o json +1ms
  superlog:exec kubectl --namespace=thoughtdata get pods -l app=distribution --no-headers -o json +2ms
  superlog:exec kubectl --namespace=thoughtdata get pods -l app=gateway --no-headers -o json +0ms
  superlog 6 pods found. +290ms
  superlog please wait, starting log trail... +0ms
  superlog:exec kubectl --namespace=thoughtdata logs --tail=1 --follow distribution-914390011-mcj7t +1ms
  superlog:exec kubectl --namespace=thoughtdata logs --tail=1 --follow distribution-914390011-v3s0h +0ms
  superlog:exec kubectl --namespace=thoughtdata logs --tail=1 --follow dashboard-1154738117-d78t5 +0ms
  superlog:exec kubectl --namespace=thoughtdata logs --tail=1 --follow dashboard-1154738117-h7w2m +0ms
  superlog:exec kubectl --namespace=thoughtdata logs --tail=1 --follow gateway-1663823869-dplrz +0ms
  superlog:exec kubectl --namespace=thoughtdata logs --tail=1 --follow gateway-1663823869-xcl0m +0ms
  dashboard-1154738117-h7w2m   Thu, 27 Jul 2017 10:50:38 GMT ioredis:redis write command[0] -> ltrim(td:dashboard:logs,0,199) +449ms
  distribution-914390011-mcj7t   id: '157ff133-8fb4-439f-af33-829eab2458e8' } +1ms
  distribution-914390011-v3s0h   id: '157ff133-8fb4-439f-af33-829eab2458e8' } +0ms
  gateway-1663823869-dplrz     Thu, 27 Jul 2017 10:50:38 GMT td:core:amqp:channel td.rpc.replyTo.BkgLtSHwIb deleting queue +1ms
  gateway-1663823869-xcl0m     Thu, 27 Jul 2017 10:50:38 GMT td:core:amqp:channel -> channel/gateway.reload via td.publish.fanout {} +0ms
  dashboard-1154738117-d78t5     id: '157ff133-8fb4-439f-af33-829eab2458e8' } +1ms

Options are:

$ kube-superlog --help

  Usage: kube-superlog [options]


  Options:

    -V, --version                 output the version number
    -l, --label [your-pod-label]  filter pods by label in an OR manner
    -n, --namespace [default]     use a namespace other than default
    -h, --help                    output usage information

Known Issues

Currently only works when you have a single contianer in a pod. If your pod contains multiple containers it'll show an error. Future versions will show logs from all containers in the pod.