Kibana Search
Quick link to filtered results of Kibana Search
Co je Kibana Search?
Kibana Search je rozšíření Chrome vyvinuté John Layton, a jeho hlavní funkcí je „Quick link to filtered results of Kibana Search“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Kibana Search
Stáhněte si soubory rozšíření Kibana Search ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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"
Základní Informace o Rozšíření
Název | Kibana Search |
ID | lnclbdiinackhljndepgmajoancjjabc |
Oficiální URL | https://chromewebstore.google.com/detail/kibana-search/lnclbdiinackhljndepgmajoancjjabc |
Popis | Quick link to filtered results of Kibana Search |
Velikost souboru | 8.09 KB |
Počet instalací | 39 |
Aktuální Verze | 0.0.1 |
Poslední Aktualizace | 2023-05-21 |
Datum Vydání | 2023-05-21 |
Vývojář | John Layton |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } |