mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
311df82d37
- New navigation for Unleash Concepts - Updated and restructured activation strategies and related concepts
44 lines
2.7 KiB
Plaintext
44 lines
2.7 KiB
Plaintext
---
|
|
title: Applications
|
|
pagination_next: reference/service-accounts
|
|
---
|
|
|
|
import Figure from '@site/src/components/Figure/Figure.tsx'
|
|
|
|
:::note Availability
|
|
|
|
**Version**: `5.11+`
|
|
|
|
:::
|
|
|
|
An **application** is any service that sends requests to the [Unleash Client API](./api/unleash/client), the [Unleash Frontend API](./front-end-api), the Unleash Admin API, or any other API that Unleash exposes. This includes [Unleash SDKs](./sdks), [Unleash Edge](./unleash-edge), the [Unleash proxy](./unleash-proxy), and even the Admin UI.
|
|
|
|
In the Admin UI, you can access Applications in **Configure > Applications**.
|
|
|
|
## Application overview
|
|
|
|
The application overview displays a list of projects that the application is accessing (accessing those projects' flags) and highlights any potential issues detected in your applications.
|
|
|
|
For detected issues, there are three different possible issues:
|
|
|
|
1. The SDK is outdated, which means the application is using an old SDK that is recommended to be upgraded.
|
|
2. The application is requesting a flag from Unleash, which does not exist in Unleash.
|
|
3. The application is using a strategy type that does not exist in Unleash.
|
|
|
|
|
|
The application is also illustrated as a diagram, showing the application node, where the environment count and feature flag count are displayed. Under the application, it is possible to see which environments the application is using. Under each environment, data about the application is shown, including how many instances are connected, which SDKs the application is using, and when the application was last seen in that environment.
|
|
|
|
<Figure caption="The application overview currently shows that 1 SDK is outdated, and the application, auth-app, has 2 environments in use: development and production." img="/img/application-overview.png"/>
|
|
|
|
## Connected instances
|
|
|
|
Connected instances display a list of instances that the application has in a selected environment. It shows the instance name, SDK version, last seen, and the IP address from which the instance connected.
|
|
|
|
<Figure caption="Connected instances currently show that in the development environment, there is one connected instance that was last seen 19 hours ago." img="/img/application-connected-instances.png"/>
|
|
|
|
## Project applications
|
|
|
|
In the project view, there is a tab named "Applications." In this view, it is possible to see all the applications that are consuming the project's features. The applications are displayed in a list, showing the application name, environments the application is consuming in the current project, instances, and SDKs.
|
|
|
|
<Figure caption="Currently, there is one application connected named auth-app, with 2 environments and 28 instances." img="/img/project-applications.png"/>
|