Skip to content

Releases: vogo/logtail

v1.5.2

15 Aug 11:30
Compare
Choose a tag to compare
  • fix duplicated router goroutine for websocket

v1.5.1

05 Aug 06:21
Compare
Choose a tag to compare
  • fix websocket page tailing

v1.5.0

06 Jun 11:47
Compare
Choose a tag to compare

refactor the architecture, remove filter model, move codes into internal package.

v1.4.1

03 Mar 03:16
Compare
Choose a tag to compare
  • fix transfer to ding&lark failed

v1.4.0

24 Feb 10:30
Compare
Choose a tag to compare

support add transfer prefix

v1.3.0

24 Feb 09:45
Compare
Choose a tag to compare

support webapi

v1.2.0

23 Nov 02:19
79ddad6
Compare
Choose a tag to compare

Add support for lark(feishu) notification transfer, you can add a transfer with type lark as follow:

  "global_routers":[
    {
           "id":"error-router",
          "matchers": [ { "contains": ["ERROR "] } ],
          "transfers": [
                { "type":"lark", "url": "https://open.feishu.cn/open-apis/bot/v2/hook/69725a13-cc6f-4f86-b467-xxxxxxxx" }
            ]
     }
]

v1.1.0

26 Aug 03:19
Compare
Choose a tag to compare

Support watch changing files under directory/sub-directories and tailing them:

{
  "servers": [
    {
      "id": "app1",
      "file": { "path": "/logs/k8s_logs/service-app1/", "recursive": true, "suffix": ".log","method":"timer"}
    },
    {
      "id": "app2",
      "file": { "path": "/logs/k8s_logs/service-app2/", "recursive": true, "suffix": ".log","method":"os"}
    }
  ]
}

The value of method could be os or timer:

  • os: using os file system api to monitor file changes
  • timer: interval check file stat to check file changes

v1.0.0

05 Apr 09:10
Compare
Choose a tag to compare

After running in product more than one month with no failure, I think it's time to release the v1.0.0.