kibana/x-pack/plugins/reporting
dave.snider@gmail.com ab29946740
update eui to 4.5.1 (#24218)
* update eui to 4.5.1

* icons declared for logging / infra

* remove eui types that are now in EUI directly

* clean up duplicated EUI typescript definitions

* Fix EuiSelect usage in beats enrollment
2018-10-19 18:30:06 -07:00
..
common Migrate report listing management to react and EUI (#22928) 2018-09-27 14:49:41 -06:00
export_types Reporting cookies (#24177) 2018-10-18 09:30:42 -07:00
public update eui to 4.5.1 (#24218) 2018-10-19 18:30:06 -07:00
server Reporting cookies (#24177) 2018-10-18 09:30:42 -07:00
index.js Migrate reporting top nav to sharing context menu (#22596) 2018-09-11 15:16:07 -06: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 (#24177) 2018-10-18 09:30:42 -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.