Colorize AWS CloudWatch Logs

Group logs visually on AWS CloudWatch

Colorize AWS CloudWatch Logsคืออะไร?

Colorize AWS CloudWatch Logs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ilhan-mstf.github.io และคุณลักษณะหลักของมันคือ "Group logs visually on AWS CloudWatch"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Colorize AWS CloudWatch Logs

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}