gitextract_ez6kotks/ ├── .dockerignore ├── .gitignore ├── .jshintrc ├── Dockerfile ├── Dockerfile-alpine ├── Gruntfile.js ├── LICENCE ├── README.textile ├── _site/ │ ├── app.css │ ├── app.js │ ├── background.js │ ├── base/ │ │ └── reset.css │ ├── fonts/ │ │ └── FontAwesome.otf │ ├── i18n.js │ ├── index.html │ ├── lang/ │ │ ├── en_strings.js │ │ ├── fr_strings.js │ │ ├── ja_strings.js │ │ ├── pt_strings.js │ │ ├── tr_strings.js │ │ ├── zh-TW_strings.js │ │ └── zh_strings.js │ ├── manifest.json │ ├── vendor.css │ └── vendor.js ├── crx/ │ └── es-head.crx ├── elasticsearch-head.sublime-project ├── grunt_fileSets.js ├── index.html ├── package.json ├── plugin-descriptor.properties ├── proxy/ │ ├── clusters/ │ │ ├── localhost9200.json │ │ └── xpack.json │ ├── index.js │ └── recipes/ │ └── http_proxy.js ├── src/ │ ├── app/ │ │ ├── app.css │ │ ├── app.js │ │ ├── base/ │ │ │ ├── boot.js │ │ │ └── reset.css │ │ ├── data/ │ │ │ ├── boolQuery.js │ │ │ ├── dataSourceInterface.js │ │ │ ├── metaData.js │ │ │ ├── metaDataFactory.js │ │ │ ├── model/ │ │ │ │ ├── model.js │ │ │ │ └── modelSpec.js │ │ │ ├── query.js │ │ │ ├── queryDataSourceInterface.js │ │ │ └── resultDataSourceInterface.js │ │ ├── lang/ │ │ │ ├── en_strings.js │ │ │ ├── fr_strings.js │ │ │ ├── ja_strings.js │ │ │ ├── pt_strings.js │ │ │ ├── tr_strings.js │ │ │ ├── vi_strings.js │ │ │ ├── zh-TW_strings.js │ │ │ └── zh_strings.js │ │ ├── services/ │ │ │ ├── cluster/ │ │ │ │ ├── cluster.js │ │ │ │ └── clusterSpec.js │ │ │ ├── clusterState/ │ │ │ │ ├── clusterState.js │ │ │ │ └── clusterStateSpec.js │ │ │ └── preferences/ │ │ │ ├── preferenceSpec.js │ │ │ └── preferences.js │ │ ├── ui/ │ │ │ ├── abstractField/ │ │ │ │ ├── abstractField.css │ │ │ │ └── abstractField.js │ │ │ ├── abstractPanel/ │ │ │ │ ├── abstractPanel.css │ │ │ │ └── abstractPanel.js │ │ │ ├── abstractWidget/ │ │ │ │ └── abstractWidget.js │ │ │ ├── anyRequest/ │ │ │ │ ├── anyRequest.css │ │ │ │ └── anyRequest.js │ │ │ ├── browser/ │ │ │ │ ├── browser.css │ │ │ │ └── browser.js │ │ │ ├── button/ │ │ │ │ ├── button.css │ │ │ │ ├── button.js │ │ │ │ └── buttonDemo.js │ │ │ ├── checkField/ │ │ │ │ ├── checkField.js │ │ │ │ ├── checkFieldDemo.js │ │ │ │ └── checkFieldSpec.js │ │ │ ├── clusterConnect/ │ │ │ │ ├── clusterConnect.css │ │ │ │ ├── clusterConnect.js │ │ │ │ └── clusterConnectSpec.js │ │ │ ├── clusterOverview/ │ │ │ │ ├── clusterOverview.css │ │ │ │ └── clusterOverview.js │ │ │ ├── csvTable/ │ │ │ │ └── csvTable.js │ │ │ ├── dateHistogram/ │ │ │ │ └── dateHistogram.js │ │ │ ├── dialogPanel/ │ │ │ │ └── dialogPanel.js │ │ │ ├── draggablePanel/ │ │ │ │ └── draggablePanel.js │ │ │ ├── filterBrowser/ │ │ │ │ ├── filterBrowser.css │ │ │ │ └── filterBrowser.js │ │ │ ├── header/ │ │ │ │ ├── header.css │ │ │ │ └── header.js │ │ │ ├── helpPanel/ │ │ │ │ └── helpPanel.js │ │ │ ├── indexOverview/ │ │ │ │ └── indexOverview.js │ │ │ ├── indexSelector/ │ │ │ │ └── indexSelector.js │ │ │ ├── infoPanel/ │ │ │ │ ├── infoPanel.css │ │ │ │ └── infoPanel.js │ │ │ ├── jsonPanel/ │ │ │ │ ├── jsonPanel.css │ │ │ │ └── jsonPanel.js │ │ │ ├── jsonPretty/ │ │ │ │ ├── jsonPretty.css │ │ │ │ └── jsonPretty.js │ │ │ ├── menuButton/ │ │ │ │ ├── menuButton.css │ │ │ │ └── menuButton.js │ │ │ ├── menuPanel/ │ │ │ │ ├── menuPanel.css │ │ │ │ └── menuPanel.js │ │ │ ├── nodesView/ │ │ │ │ ├── nodesView.css │ │ │ │ ├── nodesView.js │ │ │ │ └── nodesViewDemo.js │ │ │ ├── page/ │ │ │ │ └── page.js │ │ │ ├── panelForm/ │ │ │ │ ├── panelForm.css │ │ │ │ └── panelForm.js │ │ │ ├── queryFilter/ │ │ │ │ ├── queryFilter.css │ │ │ │ └── queryFilter.js │ │ │ ├── refreshButton/ │ │ │ │ ├── refreshButton.js │ │ │ │ ├── refreshButtonDemo.js │ │ │ │ └── refreshButtonSpec.js │ │ │ ├── resultTable/ │ │ │ │ └── resultTable.js │ │ │ ├── selectMenuPanel/ │ │ │ │ ├── selectMenuPanel.css │ │ │ │ └── selectMenuPanel.js │ │ │ ├── sidebarSection/ │ │ │ │ ├── sidebarSection.css │ │ │ │ └── sidebarSection.js │ │ │ ├── splitButton/ │ │ │ │ ├── splitButton.css │ │ │ │ ├── splitButton.js │ │ │ │ └── splitButtonDemo.js │ │ │ ├── structuredQuery/ │ │ │ │ ├── structuredQuery.css │ │ │ │ └── structuredQuery.js │ │ │ ├── table/ │ │ │ │ ├── table.css │ │ │ │ └── table.js │ │ │ ├── textField/ │ │ │ │ ├── textField.js │ │ │ │ └── textFieldDemo.js │ │ │ └── toolbar/ │ │ │ ├── toolbar.css │ │ │ └── toolbar.js │ │ └── ux/ │ │ ├── class.js │ │ ├── dragdrop.js │ │ ├── fieldCollection.js │ │ ├── observable.js │ │ ├── singleton.js │ │ ├── singletonSpec.js │ │ ├── table.css │ │ └── templates/ │ │ ├── templateSpec.js │ │ └── templates.js │ ├── chrome_ext/ │ │ ├── background.js │ │ └── manifest.json │ └── vendor/ │ ├── dateRangeParser/ │ │ └── date-range-parser.js │ ├── font-awesome/ │ │ ├── css/ │ │ │ └── font-awesome.css │ │ └── fonts/ │ │ └── FontAwesome.otf │ ├── graphael/ │ │ └── g.raphael.standalone.js │ ├── i18n/ │ │ └── i18n.js │ ├── joey/ │ │ └── joey.js │ ├── jquery/ │ │ └── jquery.js │ └── nohtml/ │ └── jquery-nohtml.js └── test/ ├── demo.html ├── generators/ │ ├── conflictingField.sh │ ├── delete_all_indices.sh │ ├── multi_type.sh │ ├── twitter_feed.sh │ └── twitter_river.sh ├── perf.html └── spec/ └── specHelper.js