Kibana Search

Quick link to filtered results of Kibana Search

Kibana Search란 무엇입니까?

Kibana Search은(는) John Layton에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quick link to filtered results of Kibana Search"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Kibana Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        An extension to add keyword filtering to a Kibana search.

Kibana offers keyword filtering and table configuration for logs in discover.  This extension will allow the user to add keyword autocomplete and navigation to Omnibox.

Once configured the Kibana Search Omnibox autocomplete and navigation is initiated by typing "kibana" + [tab] into the omnibox.  Typing into the Omnibox will trigger the extension to query the Kibana API for suggestions.  The user can select a suggestion or  continue to type.  On hitting return the current tab will navigate to the Discovery tab of the Kibana UI at the configured URL.

The extension needs to be configured with the;

1. URL to access Kibana, eg;
https://elastic.mycompany.com

2. The name of the Space, eg;
"myspace"

3. The Id and Name of the Index to discover, eg;
"c8f94360-984f-11ec-ae80-53f06d7b19e6", "product"

4. The Field name (including the .keyword extension) for which to autocomplete, eg;
"application.data.payload.my-property.keyword"

5. A list of Columns to display in the search results, eg;
"application.data.payload.user-details.keyword,application.data.payload.other-details.keyword", "message" or "_source"                    

확장 프로그램 기본 정보

이름 Kibana Search Kibana Search
ID lnclbdiinackhljndepgmajoancjjabc
공식 URL https://chromewebstore.google.com/detail/kibana-search/lnclbdiinackhljndepgmajoancjjabc
설명 Quick link to filtered results of Kibana Search
파일 크기 8.09 KB
설치 횟수 39
현재 버전 0.0.1
최근 업데이트 2023-05-21
출시 날짜 2023-05-21
개발자 John Layton
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Kibana Search",
    "description": "Quick link to filtered results of Kibana Search",
    "version": "0.0.1",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "minimum_chrome_version": "102",
    "omnibox": {
        "keyword": "kibana"
    },
    "permissions": [
        "storage"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/"
    ],
    "options_page": "options.html"
}