Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Add plugin support for parsing logs with bunyan cli #3153 #3152

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions plugins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ Following is an example of some plugin files in this directory. Other files are
| external-secrets.yaml | Refresh external/push-secrets | externalsecrets/pushsecrets | Shift-R | |
| get-all.yaml | get all resources in a namespace | all | g | [Krew](https://krew.sigs.k8s.io/), [ketall](https://github.com/corneliusweig/ketall/) |
| helm-diff.yaml | Diff with previous revision / current revision | helm/history | Shift-D/Q | [helm-diff](https://github.com/databus23/helm-diff) |
| job_suspend.yaml | Suspends a running cronjob | cronjobs | Ctrl-s | |
| k3d_root_shell.yaml | Root shell to k3d container | containers | Shift-s | [jq](https://stedolan.github.io/jq/) |
| job-suspend.yaml | Suspends a running cronjob | cronjobs | Ctrl-s | |
| k3d-root-shell.yaml | Root shell to k3d container | containers | Shift-s | [jq](https://stedolan.github.io/jq/) |
| keda-toggle.yaml | Enable/disable [keda](3) ScaledObject autoscaler | scaledobjects | Ctrl-N | |
| log_stern.yaml | View resource logs using stern | pods | Ctrl-l | |
| log_jq.yaml | View resource logs using jq | pods | Ctrl-j | kubectl-plugins/kubectl-jq |
| log_full.yaml | get full logs from pod/container | pods/containers | Ctrl-l | |
| log-stern.yaml | View resource logs using stern | pods | Ctrl-l | |
| log-jq.yaml | View resource logs using jq | pods | Ctrl-j | kubectl-plugins/kubectl-jq |
| log-bunyan.yaml | View pods, service, deployment logs using bunyan | pods, service, deployment | Ctrl-l | [Bunyan](https://www.npmjs.com/package/bunyan) |
| log-full.yaml | get full logs from pod/container | pods/containers | Ctrl-l | |
| resource-recommendations.yaml | View recommendations for CPU/Memory requests based on historical data | deployments/daemonsets/statefulsets | Shift-k | [Robusta KRR](https://github.com/robusta-dev/krr) |
| trace-dns.yaml | Trace DNS resolution using Inspektor Gadget (4) | containers/pods/nodes | Shift-d | |

Expand Down
42 changes: 42 additions & 0 deletions plugins/log-bunyan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Forwards logs to bunyan cli for formatting
# Install Bunyan: https://www.npmjs.com/package/bunyan
plugins:
bunyanlogsp:
shortCut: Ctrl-L
confirm: false
description: "Logs (bunyan)"
scopes:
- pod
command: bash
background: false
args:
- -ic
- |
kubectl logs -f $NAME -n $NAMESPACE --context $CONTEXT | bunyan -o short
exit 0
bunyanlogsd:
shortCut: Ctrl-L
confirm: false
description: "Logs (bunyan)"
scopes:
- deployment
command: bash
background: false
args:
- -ic
- |
kubectl logs -f deployment/$NAME -n $NAMESPACE --context $CONTEXT | bunyan -o short
exit 0
bunyanlogss:
shortCut: Ctrl-L
confirm: false
description: "Logs (bunyan)"
scopes:
- service
command: bash
background: false
args:
- -ic
- |
kubectl logs -f service/$NAME -n $NAMESPACE --context $CONTEXT | bunyan -o short
exit 0