kibana/x-pack/plugins/reporting
Brian Gaddis 733c9ec4f3 Added sort order to share menu options. (#25058)
* Added sort order to share menu options.

Sorts ascending on sort order first then ascending on name. Any menu item without a sort order gets set to zero.

* Moved new sortOrder property from node_modules

* Had to rerun the snapshot for the share menu with the sortOrder in it.
2018-11-03 08:18:59 -04:00
..
common Add png output to reports 65 (#24759) 2018-11-01 16:28:00 -04:00
export_types Add png output to reports 65 (#24759) 2018-11-01 16:28:00 -04:00
public Added sort order to share menu options. (#25058) 2018-11-03 08:18:59 -04:00
server Reporting cookies 2 (#24752) 2018-10-29 15:54:45 -07:00
index.js [Reporting] queue.pollEnabled setting adds ability to disable polling for idle jobs (#24295) 2018-10-24 08:03:54 -07:00
log_configuration.js Migrate x-pack-kibana source to kibana 2018-04-24 13:48:10 -07:00
README.md Migrate x-pack-kibana source to kibana 2018-04-24 13:48:10 -07:00
types.d.ts Reporting cookies 2 (#24752) 2018-10-29 15:54:45 -07:00

Kibana Reporting

An awesome Kibana reporting plugin

Development

Assuming you've checked out x-plugins next to kibana...

  • Run yarn kbn bootstrap
  • Run yarn start to watch for and sync files on change
  • Open a new terminal to run Kibana - use yarn start to launch it in dev mode
    • Kibana will automatically restart as files are synced
    • If you need debugging output, run DEBUG=reporting yarn start instead

If you have installed this somewhere other than via x-plugins, and next to the kibana repo, you'll need to change the pathToKibana setting in gulpfile.js

Conventions

This plugins adopts some conventions in addition to or in place of conventions in Kibana (at the time of the plugin's creation):

Folder structure

export_types/ (contains public and server aspects of the different export types) 
  printable_pdf/ 
    public/
    server/
  csv/
    public/
    server/
public/ (shared public code for all export types)
server/ (shared server code for all export types)

This folder structure treats the different export_types like Plugins, with their public/server code being separate in a folder.