Public URLs
You can generate valid public URLs that you can link to the Entity Viewer app. By creating these links, you can integrate access from other apps (such as Active Console and Dashboards) to streamline workflows and create a more cohesive experience. These public URLs can either:
- Open an existing context in the Entity Viewer app, while preserving the current view.
- Create a new context based on specific context query parameters provided in the link, which allow customized views.
- Link to a single entity using an entity query, training focus directly on a specific entity.
By URL-encoding all query string parameters, the Entity Viewer app can correctly interpret URLs and support context selection and entity filtering.
Function | URL structure | Description |
---|---|---|
App base URL | {host}/app/entity-viewer |
Redirects to the first of the user’s contexts, if any. |
View group of entities | {host}/app/entity-viewer/context/{contextName}?{Context Query Params}&{Entity Query Params}&{Commands Query Params} |
Displays the entities for the user context with name = contextName . If not found, it will preview a context based on any provided Context query parameters. If Entity query parameters are provided, then the entity matching the parameters will be displayed. |
View single entity | {host}/app/entity-viewer/entity?{Entity Query Params}&{Commands Query Params} |
Displays a single entity based on the provided dimensions. |
Generate a URL Copied
Generate a URL for a group of entities Copied
- Create a new context with the parameters you need. See Add a new context group.
- Click . This will open a new browser window.
- Copy the URL from your browser.
Generate a URL for a specific entity Copied
- Find the entity you wish to view. See Deep-dive data on an entity.
- Click . This will open a new browser tab.
- Copy the URL from your browser.
Query parameters Copied
Context query parameters (optional) Copied
All query parameters should be URL-encoded before being passed to the Entity Viewer app.
Query parameters | Type | Default | Example (before encoding) | Description |
---|---|---|---|---|
filter | string | "" | “geneos_kind = managedEntity” | Filters the entities. |
groupBy | string[] | [] | [“source_gateway”,“HostName”,“managedEntity”] | Groups the entities. |
groupByDisabled | string[] | [] | [“source_gateway”] | Disables groupings provided in the groupBy. Each entry must also exist in the groupBy. At most 3 entries is allowed to be enabled at a time. |
stateTrees | { name: string; logicalTrees: string}[] | [] | [{“name”:“State Tree”,“logicalTree”:[“source_gateway”,“HostName”,“managedEntity”]}] | Provides trees which allows you to filter your entities through use of facets. |
activeTree | string | first | “State Tree” | Sets the currently active state tree. |
Entity query parameters (optional) Copied
All query parameters should be URL-encoded before being passed to the Entity Viewer app.
Query parameters | Type | Default | Example (before encoding) | Description |
---|---|---|---|---|
dimensions | { key: string; value: string}[] | none | [{"key":"probe","value":"netprobe-node-aks-agentpool-41083637-vmss000005"} , {"key":"managedEntity","value":"prometheus-kube-state-metrics-57f6b6b4fd-f96qb-aks-agentpool-41083637-vmss000005-prometheus"}] |
Shows the entity of the provided entity dimension. |
tab | one of “metrics”, “logs”, “activity”, “attributes”, “related entities” | “metrics” | “metrics” | Selects the tab that opens in entity view. |
datapointDimensions | { key: string; value: string}[] | none | [{"key":"probe","value":"aws-demo-np-01"} , {"key":"managedEntity","value":"Gateway+Load+Monitoring"} , {"key":"type","value":"Gateway+Environment"} , {"key":"sampler","value":"gwProcesses"} , {"key":"dataview","value":"gwProcesses"} , {"key":"row","value":"gateway"}] |
Shows visualization of the metric of the provided metric dimension. |
Commands query parameters (optional) Copied
Use these query parameters to control whether the Commands history panel should be displayed when opening the Entity Viewer app.
All query parameters should be URL-encoded before being passed to the Entity Viewer app.
Query parameters | Type | Default | Example (before encoding) | Description |
---|---|---|---|---|
commands | boolean | none | “true” | Shows command execution history if set. |
execution | string (id) | none | “2” | Shows the command execution of the provided execution id. |