log-bot

command module
v0.0.14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 16, 2024 License: Apache-2.0 Imports: 3 Imported by: 0

README

logbot

Bot for watching and parsing logs.

This project is part of a monorepo (https://github.com/CurtisNewbie/moon-monorepo).

Requirements

Configuration

For more configuration, check miso.

Property Description Default Value
logbot.node name of the node 'default'
logbot.[]watch list of watch config
logbot.[]watch.app app name
logbot.[]watch.file path of the log file
logbot.[]watch.type type of log pattern [ 'go', 'java' ] 'go'
logbot.remove-history-error-log enable task to remove error logs reported 7 days ago false
log.[]pattern log pattern supported (regexp)

Documentation

Log Pattern

Logs are parsed using regex, there are two log patterns already available:

log:
  pattern:
    go: '^([0-9]{4}\-[0-9]{2}\-[0-9]{2} [0-9:\.]+) +(\w+) +\[([\w ]+),([\w ]+)\] ([\w\.]+) +: *((?s).*)'
    java: '^([0-9]{4}\-[0-9]{2}\-[0-9]{2} [0-9:\.]+) +(\w+) +\[[\w \-]+,([\w ]*),([\w ]*),[\w ]*\] [\w\.]+ \-\-\- \[[\w\- ]+\] ([\w\-\.]+) +: *((?s).*)'

With go pattern, the logs looks like this:

2023-06-13 22:16:13.746 ERROR [v2geq7340pbfxcc9,k1gsschfgarpc7no] main.registerWebEndpoints.func2 : Oh on!
continue on a new line :D

With java pattern, the logs looks like this:

2023-06-17 17:34:48.762  INFO [auth-service,,,] 78446 --- [           main] .c.m.r.c.YamlBasedRedissonClientProvider : Loading RedissonClient from yaml config file, reading environment property: redisson-config

The pattern provided will need to match following groups:

  1. time that matches 2006-01-02 15:04:05.000
  2. log level
  3. trace id
  4. span id
  5. name of the method
  6. log content

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL