這篇文章主要介紹“elasticsearch的site插件怎么使用”,在日常操作中,相信很多人在elasticsearch的site插件怎么使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”elasticsearch的site插件怎么使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
成都創(chuàng)新互聯是一家專業(yè)提供鄖西企業(yè)網站建設,專注與網站設計制作、成都網站建設、H5場景定制、小程序制作等業(yè)務。10年已為鄖西眾多企業(yè)、政府機構等服務。創(chuàng)新互聯專業(yè)網絡公司優(yōu)惠進行中。
現在我們用 bootstrap+angularJs 來寫一個簡單的頁面,一個site插件,它通過我們前面開發(fā)的translogRest插件訪問操作日志,并且展示。
操作類型 | 版本 | 類型 | 路由 | 父類 | TTL | 時間 | 操作 |
---|---|---|---|---|---|---|---|
{{item.opType}} | {{item.version}} | {{item.type}} | {{item.routing}} | {{item.parent}} | {{item.ttl}} | {{item.timestamp | date:'yyyy-MM-dd HH:mm'}} |
var module = angular.module('app', []); function translogCtrl($scope, $http) { $scope.getData = function() { var file = $scope.file; $http.get('http://localhost:9200/_translog', { params : { file : file, size : 12 } }).success(function(data, status, headers, config) { $scope.itemList = data; $scope.view = function(id) { var item = $scope.itemList[id]; $scope.editItem = item; try { $('#prettyJson').html( pretty.parse (eval("(" + item.source + ")"))); } catch (error) { $('#prettyJson').html(pretty.error (error)); } $('#editPanel').modal('show'); } }).error(function(data, status, headers, config) { console.info(data); }); } }
然后我們復制應用到 plugins\translogView\_site 下面就可以了。我們也可以補充插件描述文件_site\es-plugin.properties
description=view translog
瀏覽器里輸入
http://localhost:9200/_nodes?all=true
可以看到我們的插件已經安裝成功,描述信息也有了。
到此,關于“elasticsearch的site插件怎么使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網頁名稱:elasticsearch的site插件怎么使用
文章來源:http://weahome.cn/article/jsieos.html