Quick Kibana Log

Allows to quickly find logs by some filter column (like traceId)

Quick Kibana Logคืออะไร?

Quick Kibana Log เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oleksandr Pasichnyk และคุณลักษณะหลักของมันคือ "Allows to quickly find logs by some filter column (like traceId)"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Kibana Log

ดาวน์โหลดไฟล์ส่วนขยาย Quick Kibana Log ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Quick Kibana Log extension is designed to speed up your workflow.
With the simple button you can find logs based on provided filter value.
It mostly used to find all related logs by traceId column. But could be customized and used every available column to filter logs.

There are three ways to quick search:
- Press extension icon and put value for search in the input
- Select some text which you want to search and open context menu and click `Quik Kibana Log` item
- Select some text which you want to search and press hotkey `Ctrl+Shift+K` or `Cmd+Shift+K` (on Mac)

You MUST define settings for the extension:
- Kibana Base URL - this url must be pointed to the discover app
- columns - comma separated columns which will be shown in discover view
- filer column - this column will be used for logs filtering by provided value
- index - elastic index which contains logs                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Quick Kibana Log Quick Kibana Log
ID nabdhpalkaljcoklklippkljpepdbbab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-kibana-log/nabdhpalkaljcoklklippkljpepdbbab
คำอธิบาย Allows to quickly find logs by some filter column (like traceId)
ขนาดไฟล์ 16.54 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2022-04-27
วันที่เผยแพร่ 2022-04-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Oleksandr Pasichnyk
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Kibana Log",
    "description": "Allows to quickly find logs by some filter column (like traceId)",
    "version": "1.0.0",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/"
    ],
    "icons": {
        "16": "logo\/logo_16.png",
        "48": "logo\/logo_48.png",
        "128": "logo\/logo_128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "logo\/logo_16.png",
            "48": "logo\/logo_48.png"
        },
        "default_title": "Quick Kibana",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "commands": {
        "open-popup": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Open kibana popup with selected text"
        }
    }
}