You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some cases when an integration developer might want to prompt the user to navigate to another area of kibana.
For instance, in the case of Agentless policy configuration, the developer might need to display some next steps links that link to the kibana areas where the additional configuration will happen, as shown in the screenshot:
To be able to do an integration developer should be able to enumerate "next step" options for each package/policy template in kibana manifest:
policy_templates:
- name: foo
...
links:
- title: Findings
type: post_install_step
content: "Consolidated view of security and compliance issues identified within your environment"
url: "kbn:/app/enterprise_search/content/connector/{{connector_id}}/overview"
- title: Add more accounts
type: action
url: "kbn:..."
There is also a special case of next steps that will navigate the user to the Connectors UI in Kibana and will reference connector ids for this:
These Connector Ids are currently static for the lifetime of a connector instance, (as they are ES Index document _id values for the .elastic-connectors-v1 index) and they are being added as configurable to the policy "advanced" configuration, so they'll show up here. About connectors, they could be defined in one of these two ways:
In the package policy ( no changes to package-spec)
in package-spec, with the above suggested change to policy templates links, adding a templated variable {{connector_id}} that references the vars content.
The text was updated successfully, but these errors were encountered:
These Connector Ids are currently static for the lifetime of a connector instance, (as they are ES Index document _id values for the .elastic-connectors-v1 index) and they are being added as configurable to the policy "advanced" configuration, so they'll show up here.
So they are variables in the policy, right? This looks good as would be the same templating used in agent policies.
@criamico Heyo 👋 (I noticed you might mentioned my recent PR by accident). Just to clarify, we extended the policy to optionally (!) define the connector_id in the policy. If the connector_id isn’t set, we fall back to using the input ID as the id for a new connector doc.
This approach ensures the policy always encodes which connector document is tied to a specific integration. Feel free to ping me if you have any questions.
There are some cases when an integration developer might want to prompt the user to navigate to another area of kibana.
For instance, in the case of Agentless policy configuration, the developer might need to display some next steps links that link to the kibana areas where the additional configuration will happen, as shown in the screenshot:
To be able to do an integration developer should be able to enumerate "next step" options for each package/policy template in kibana manifest:
There is also a special case of next steps that will navigate the user to the Connectors UI in Kibana and will reference connector ids for this:
These Connector Ids are currently static for the lifetime of a connector instance, (as they are ES Index document
_id
values for the.elastic-connectors-v1
index) and they are being added as configurable to the policy "advanced" configuration, so they'll show up here. About connectors, they could be defined in one of these two ways:{{connector_id}}
that references thevars
content.The text was updated successfully, but these errors were encountered: