Skip to content
Lauren Padia edited this page Jun 15, 2016 · 4 revisions

[User Guide](User Guide) | [Data Model](Data Model)


A user object encapsulates information about a principal user.

Field Name Type Description
id bigint ID of the user object
createdById bigint ID of the principal who created the user
createdDate long Timestamp at which the user was created
modifiedById bigint ID of the principal who last modified the user
modifiedDate long Timestamp at which the user was last modified
userName string Username of the principal
email string Email address of the principal
preferences map<preference,string> Key-value preferences
ownedDashboards bigint[] Dashboard IDs that belong to the user
privileged boolean Authorized to perform privileged actions
Example: User Entity
{
  "id": 1,
  "createdById": null,
  "createdDate": 1420666589299,
  "modifiedById": null,
  "modifiedDate": 1444405163287,
  "userName": "admin",
  "email": "[email protected]",
  "preferences": {},
  "ownedDashboardIds": [
    101207,
    100903
  ],
  "privileged": true
}

Argus

Home
[Getting Started](Getting Started)
##[User Guide](User Guide)
Alerts
Annotations
Dashboards
Metrics
Namespaces
[Data Model](Data Model)

Transforms
[Web Service API](Web Service API)

  • [/alerts](Alerts Resource)
  • [/annotations](Annotation Resource)
  • [/audit](Audit Resource)
  • [/authentication](Authentication Resource)
  • [/collection](Collection Resource)
  • [/dashboards](Dashboard Resource)
  • [/discover](Discover Resource)
  • [/history](History Resource)
  • [/management](Management Resource)
  • [/metrics](Metrics Resource)
  • [/namespace](Namespace Resource)
  • [/users](Users Resource)

Contributing

Clone this wiki locally