Static Navigation Entries
The a9s Service Dashboard can show additional navigation entries in its navbar. These can point to defined targets and
are configured as a list of objects via the property static_urls
of the a9s DS API Gateway.
Manifest settings
properties:
static_urls:
- { display_name: "link name", link: "link url", id: "required_uniq_string" }
Ops File
Static navigation entries can be applied via an Ops File to the related a9s Data Service manifest. The id
key needs to
be unique throughout the list of static navigation entries. See example below.
- type: replace
path: /properties/static_urls?
value:
- {display_name: "RabbitMQ Management Console", link: "https://<instance-guid>.<dashboard-domain>", id: "rabbit-mq-mngmt-console"}
::info Possible Options
As shown in the example, the Static Navigation Entries accept wild cards for <instance-guid>
and <dashboard-domain>
that are automatically replaced by the a9s Service Dashboard.
:::