Reinstall System Integration Assets

Hello,

I had to delete some Dashboards that were not functioning properly, unfortunately I discovered way too late that System integrations cannot be reinstalled.
Is there a way to only reinstall the assets (more specifically, the Dashboards)?

I also have a second, semi-related question: can integrations be updated in policies without re-adding them?

Thanks in advance

Hi Alessandro

I think one of the best way to get back the assets here will be to force reinstall the package. This can be done with an API call to Kibana.

curl --request POST \
  --url https://{KIBANA_HOST}:5601/api/fleet/epm/packages/system-{PACKAGE_VERSION} \
   -u elastic:{PASSWORD} \
  --header 'Content-Type: application/json' \
  --header 'User-Agent: elastic agent 7.13.0' \
  --header 'kbn-xsrf: xx' \
  --data '{ "force": true}'

For your second question, unfortunately right now adding and removing an integration to a policy is the only way to update it in the agent policy, we are working on adding the upgrade feature it should be coming soon.

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