kibana/x-pack/plugins/reporting
Matthew Kime 140978d28c
Remove angular i18n service calls (#36329)
* Remove angular i18n service calls
2019-05-21 09:00:52 -05:00
..
__snapshots__ [xpack/encryptionKeys] use default keys when running from source (#36452) 2019-05-10 11:13:06 -07:00
common [@kbn/expect] "fork" expect.js into repo (#33761) 2019-03-25 09:56:48 -07:00
export_types [@kbn/expect] "fork" expect.js into repo (#33761) 2019-03-25 09:56:48 -07:00
public Remove angular i18n service calls (#36329) 2019-05-21 09:00:52 -05:00
server [Monitoring/Telemetry] Force collectors to indicate when they are ready (#36153) 2019-05-20 13:03:24 -04:00
test_helpers
index.js [Monitoring/Telemetry] Force collectors to indicate when they are ready (#36153) 2019-05-20 13:03:24 -04:00
index.test.js [xpack/encryptionKeys] use default keys when running from source (#36452) 2019-05-10 11:13:06 -07:00
log_configuration.js
README.md
types.d.ts

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.