Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.01 KB

MetricGroupPost.md

File metadata and controls

30 lines (24 loc) · 1.01 KB

LaunchDarklyApi::MetricGroupPost

Properties

Name Type Description Notes
key String A unique key to reference the metric group
name String A human-friendly name for the metric group
kind String The type of the metric group
description String Description of the metric group [optional]
maintainer_id String The ID of the member who maintains this metric group
tags Array<String> Tags for the metric group
metrics Array<MetricInMetricGroupInput> An ordered list of the metrics in this metric group

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::MetricGroupPost.new(
  key: metric-group-key-123abc,
  name: My metric group,
  kind: funnel,
  description: Description of the metric group,
  maintainer_id: 569fdeadbeef1644facecafe,
  tags: [&quot;ops&quot;],
  metrics: null
)