action lgtm_get_metrics { label: "Get the identifiers and descriptions of the usage metrics" description: "LGTM administrators can use this endpoint to list the usage metrics that are available to download.\n" provider: lgtm method: GET path: "/system/metrics" encoding: json output: { type: "object" properties: { data: { type: "array" description: "The list of names and identifiers by which the metrics are referenced." items: { type: "object" properties: { description: { type: "string" description: "The name by which the metric is listed in the user interface." } "metric-id": { type: "string" description: "The identifier by which this metric is referenced in the API." } } } } } } }