kibana/examples/developer_examples
Stacey Gammon b9f398875a
Add more information on kibana.json properties, update example plugins (#107600)
* Add more information on kibana.json properties, update example plugin kibana.jsons

* fix auto save fix

* Update anatomy_of_a_plugin.mdx

* Update anatomy_of_a_plugin.mdx

* update based on review comments

* Update anatomy_of_a_plugin.mdx

* Put kibanaVersion back and adjust the explanations of the fields

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-08-09 13:32:07 -04:00
..
public Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
kibana.json Add more information on kibana.json properties, update example plugins (#107600) 2021-08-09 13:32:07 -04:00
navigation.png Kibana developer examples landing page (#67049) 2020-06-08 09:47:51 -04:00
README.md Kibana developer examples landing page (#67049) 2020-06-08 09:47:51 -04:00
tsconfig.json Extract src/core in a separate TS project (#76785) 2020-09-15 12:41:27 +02:00

Developer examples

Owner: Kibana application architecture team

The developer examples app is a landing page where developers go to search for working, tested examples of various developer services. Add your a link to your example using the developerExamples register function offered on the setup contract:

  setup(core, { developerExamples }) {
    developerExamples.register({
      appId: 'myFooExampleApp',
      title: 'Foo services',
      description: `Foo services let you do bar and zed.`,
      links: [
        {
          label: 'README',
          href: 'https://github.com/elastic/kibana/tree/master/src/plugins/foo/README.md',
          iconType: 'logoGithub',
          target: '_blank',
          size: 's',
        },
      ],
      image: img,
    });
  }

Run Kibana with developer examples via:

yarn start --run-examples

Then navigate to "Developer examples":