kibana/x-pack/plugins/reporting
Joel Griffith a6ed6a3b24
Using content-disposition pkg for non-US font titles in reporting (#30895)
* Using content-disposition for non-US font titles in reporting
2019-02-21 09:18:01 -08:00
..
common Adding in browser info to the report-info drawer (#26307) 2018-12-04 12:08:24 -08:00
export_types Reintroduce linting rule that requires single-quotes in x-pack. (#30893) 2019-02-14 12:08:37 -08:00
public Fix/reporting vis preserve (#30456) 2019-02-08 11:56:29 -07:00
server Using content-disposition pkg for non-US font titles in reporting (#30895) 2019-02-21 09:18:01 -08:00
test_helpers Combine common pdf png functions (#25152) 2018-11-14 08:28:07 -05:00
index.js Reintroduce linting rule that requires single-quotes in x-pack. (#30893) 2019-02-14 12:08:37 -08:00
log_configuration.js Testing x pack jest integration (#26825) 2019-01-10 14:31:12 -05:00
README.md
types.d.ts [Reporting] refactor routes files and helpers (#30111) 2019-02-12 11:33:36 -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.