Could somebody provide me an example how to create a plugin for custom field formatters?
I had one for 6.x but since the architecture of the plugins changed in 7.9.x I am looking for some help to register my plugin where I have couple of custom field formatters. My previous version was like below:
return new kibana.Plugin({
name: 'my-field-formatters',
require: ['kibana'],
uiExports: {
hacks: ["plugins/my-field-formatters/hack"],
fieldFormats: [ 'plugins/my-field-formatters/formatter1']
})
Any example for 7.9.x would be great. Thanks in advance.