Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Dashboard

Lauren Padia edited this page Mar 22, 2017 · 5 revisions

User Guide | Data Model


The dashboard object encapsulates information that is used by a visualization framework to render a dashboard. The dashboard content is specific to the visualization framework. Argus web services do not support rendering of metric data or dashboards.

Field Name Type Description
id bigint ID of the dashboard object
createdById bigint ID of the principal who created the dashboard
createdDate long Timestamp at which the dashboard was created
modifiedById bigint ID of the principal who last modified the dashboard
modifiedDate long Timestamp at which the dashboard was last modified
name string Dashboard name
content string Content of the dashboard
ownerName string Name of the principal owner of the dashboard
shared boolean Indicates if the dashboard is visible by other users
description string Dashboard description
Example: Dashboard Entity
{
  "id": 100458,
  "createdById": 1,
  "createdDate": 1421868387292,
  "modifiedById": 101402,
  "modifiedDate": 1446760653374,
  "name": "Argus Cluster Metrics",
  "content": "<h1>Hello World!</h1>",
  "ownerName": "admin",
  "shared": false,
  "description": "Shows core metrics for the Argus cluster"
}
Clone this wiki locally