kibana/x-pack/plugins/reporting
Tim Sullivan ec87f4743e
let _claimPendingJobs have a valid job when updating leads to version conflict (#21980)
* let _claimPendingJobs have a valid job when updating leads to version conflict

* change _claimJob to reject the promise instead of resolve to true/false

* add _claimPendingJobs tests

* fix tests
2018-08-24 09:44:25 -07:00
..
common Stats API: implement the "kibana status" spec from the Monitoring data model for stats (#20577) 2018-07-18 16:37:04 -07:00
export_types Convert all Less files to Sass in Dashboard, using EUI variable scope (#21374) 2018-08-14 19:05:33 -04:00
public Fix page layout on Reporting page (#21218) 2018-07-25 13:44:13 -04:00
server let _claimPendingJobs have a valid job when updating leads to version conflict (#21980) 2018-08-24 09:44:25 -07:00
webpackShims Migrate x-pack-kibana source to kibana 2018-04-24 13:48:10 -07:00
index.js bump reporting timeout (#20833) 2018-07-24 14:36:33 -04: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.