Colorize AWS CloudWatch Logs
Group logs visually on AWS CloudWatch
Colorize AWS CloudWatch Logs क्या है?
Colorize AWS CloudWatch Logs https://ilhan-mstf.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Group logs visually on AWS CloudWatch"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Colorize AWS CloudWatch Logs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } ] } |