Kibana Scripted Field URL Template

I was using KIbana 7.4.2. At that time I use to fetch scripted field images as below

/bundles/src/legacy/ui/public/field_editor/components/field_format_editor/editors/url/icons/{{value}}.png"}.

Now we upgraded Kibana to 7.10.2 and placed images in
/src/plugins/index_pattern_management/public/assets/icons/
. When I try to give URL as

/bundles/src/plugins/index_pattern_management/public/assets/icons/{{value}}.png, its throwing error

image

So in 7.10.2 Kibana, where should I place images and how should I enter that URL in scripted field

It sounds like you've placed the image in the right directory, however I believe the path to retrieve it has changed.

I don't think bundles/src or public are necessary anymore. Does it work if you try
/plugins/index_pattern_management/assets/icons/{{value}}.png?

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.