Zum Inhalt springen

How to access additional frontends

Diese Seite ist noch nicht in deiner Sprache verfügbar. Englische Seite aufrufen

At the Observability Service Dashboard we provide several additional frontend URLs at the API-Tab.
As we protect the URL against unauthorized access, you will get a 403 Forbidden status code when trying to call the UI.

To access an additional frontend, you need to modify the HTTP request header with your API credentials upon navigating the URL.
For example, you can use the browser extension ModHeader to achieve this.

  • Observability instance available and running
  • API user created
  • ModHeader extension installed

Once you have created the API credentials, you have to encode it in base64.

Under MacOS and Linux you can use the following terminal command (replace the [username] and [password] placeholders with your API credentials).

Terminal window
echo -n '[username]:[password]' | base64

Alternatively, there are also encoder websites available. However, make sure these websites are trustworthy and guarantee the security of your data.

After installing the ModHeader extension, we will do the following configuration:

  1. Click the ModHeader extension icon in your browser
  2. If there isn’t already a Request headers box where you can fill in a Name-Value pair, click the +Mod button and add a Request header.
  3. In the Name box, enter ‘Authorization’.
  4. In the Value box, enter ‘Basic’ + your base64 encoded username and password. (Reference)
  5. Call the user interface of your choice.
  6. Pause the ModHeader extension again after usage.
    Otherwise problems may arise when calling other websites.

Here are some things you can do if you have trouble logging in:

  • Clear browser cache.
  • Look for typos.
  • Check if you use the right header type (Request header, not Response header).
  • Check if your credentials are encoded correctly.
  • Try other credentials.