Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
dilipdevaraj-sfdc edited this page Jan 29, 2019 · 10 revisions

User Guide | Data Model


Field Name Type Description
scope string Scope of the metric object
metric string Name of the time-series metric
tags map<string,string> Additional information in the form of tag-key value pairs
namespace string Namespace for the metric
datapoints map<long,string> Timestamps and their corresponding metric values
Example: Metric Entity
{
  "scope": "argus.jvm",
  "metric": "file.descriptor.open",
  "tags": {
    "host": "my-host.mycompany.com"
  },
  "namespace": null,
  "datapoints": {
    1446850980000: "171.0",
    1446851040000: "174.0",
  }
}