Colorize AWS CloudWatch Logs

Group logs visually on AWS CloudWatch

什么是Colorize AWS CloudWatch Logs?

Colorize AWS CloudWatch Logs是由https://ilhan-mstf.github.io开发的Chrome扩展程序,该扩展的主要功能是“Group logs visually on AWS CloudWatch”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Colorize AWS CloudWatch Logs扩展crx文件

下载Colorize AWS CloudWatch Logs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The purpose of this extension is to group logs visually on AWS CloudWatch. There are three rules:
- Set a different background color for each log group of AWS Lambda invocation. Therefore, you can easily recognize beginning, body and end of the logs of the same invocation.
- Set font weight of lines having `REPORT`, `[ERROR]` and `[Error ` keywords to bold.
- Set text color of ANSI terminal codes in the logs. (by https://github.com/oguimbal)

Further, there is two functionality for better log viewing experience (by https://github.com/oguimbal):
- Switching to fullscreen,
- Refreshing the logs periodically to load new items.

This extension doesn't collect any user and web page information. It only runs on AWS CloudWatch Logs web page. It is free to use.

Overhead is very low, colorize operation takes ~7 milliseconds, listen operation for new event logs takes just ~0.5 milliseconds in every second.

Contributions are welcome. To contribute please visit project page: https://github.com/ilhan-mstf/colorize_cloudwatch_logs

Release Log:
--------------------
Version 0.5.1:
- Enable font override on new ui

Version 0.5.0:
- Handle new ui
- Case insensitive error line search

Version 0.4.11:
- Add `[Error ` as a special line to make it bold
- Add "Fullscreen" and "Follow tail" buttons

Version 0.3.8:
- Set text color of ANSI terminal codes
- Update extension logo
- Improve performance

Version 0.2.1:
- Make bold font weight of `REPORT` and `[ERROR]` lines                    

扩展基本信息

名称 Colorize AWS CloudWatch Logs Colorize AWS CloudWatch Logs
ID fkagnmcbeokmapmcbecbcmpccmlbhkpl
官方URL https://chromewebstore.google.com/detail/colorize-aws-cloudwatch-l/fkagnmcbeokmapmcbecbcmpccmlbhkpl
简介 Group logs visually on AWS CloudWatch
文件大小 16.75 KB
安装次数 1,220
当前版本 0.5.1
更新时间 2020-12-07
上架时间 2020-02-23
评分 4.22/5 共9次评分
开发者 https://ilhan-mstf.github.io
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ilhan-mstf/colorize_cloudwatch_logs
帮助页面URL https://github.com/ilhan-mstf/colorize_cloudwatch_logs
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colorize AWS CloudWatch Logs",
    "description": "Group logs visually on AWS CloudWatch",
    "version": "0.5.1",
    "homepage_url": "https:\/\/github.com\/ilhan-mstf\/colorize_cloudwatch_logs",
    "manifest_version": 2,
    "icons": {
        "16": "img\/logo_16.png",
        "32": "img\/logo_32.png",
        "64": "img\/logo_64.png",
        "128": "img\/logo_128.png"
    },
    "browser_action": {
        "default_popup": "hello.html",
        "default_icon": "img\/logo_16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/cloudwatch\/*"
            ],
            "js": [
                "lib\/ansi_up.js",
                "colorize.js"
            ]
        }
    ]
}