kibana/x-pack/plugins/reporting
Tim Sullivan 1617da93dd
[X-Pack Usage API] use authentication from request headers (#19613)
* [X-Pack Usage API] use authentication from request headers

* add test for usage api no-auth

* whitespace / syntax nits

* reduce loc changed

* remove a weird looking comment
2018-06-05 10:38:02 -07:00
..
common [Monitoring/Reporting Stats] Move hardcoded Reporting stats type collection out of monitoring plugin (#18894) 2018-05-24 11:14:27 -07:00
export_types SavedObjects service and client provider (#19349) 2018-06-04 17:02:25 -04:00
public It's confusing to see the timestamp of started_at if the status says "completed" (#19551) 2018-05-30 19:37:32 -04:00
server [X-Pack Usage API] use authentication from request headers (#19613) 2018-06-05 10:38:02 -07:00
webpackShims Migrate x-pack-kibana source to kibana 2018-04-24 13:48:10 -07:00
index.js [X-Pack Usage API] use authentication from request headers (#19613) 2018-06-05 10:38:02 -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

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.