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”。
扩展截图
下载Kibana Search扩展crx文件
下载Kibana Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } |