UNPKG

@spalger/kibana

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

17 lines (14 loc) 357 B
define(function (require) { var rison = require('ui/utils/rison'); var module = require('ui/modules').get('kibana'); module.filter('rison', function () { return function (str) { return rison.encode(str); }; }); module.filter('risonDecode', function () { return function (str) { return rison.decode(str); }; }); });