# DatadogAPIClient::V2::MetricTagConfigurationCreateAttributes ## Properties | Name | Type | Description | Notes | | ----------------------- | ----------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------- | | **aggregations** | [**Array<MetricCustomAggregation>**](MetricCustomAggregation.md) | A list of queryable aggregation combinations for a count, rate, or gauge metric. By default, count and rate metrics require the (time: sum, space: sum) aggregation and Gauge metrics require the (time: avg, space: avg) aggregation. Additional time & space combinations are also available: - time: avg, space: avg - time: avg, space: max - time: avg, space: min - time: avg, space: sum - time: count, space: sum - time: max, space: max - time: min, space: min - time: sum, space: avg - time: sum, space: sum Can only be applied to metrics that have a `metric_type` of `count`, `rate`, or `gauge`. | [optional] | | **include_percentiles** | **Boolean** | Toggle to include/exclude percentiles for a distribution metric. Defaults to false. Can only be applied to metrics that have a `metric_type` of `distribution`. | [optional][default to false] | | **metric_type** | [**MetricTagConfigurationMetricTypes**](MetricTagConfigurationMetricTypes.md) | | [default to 'gauge'] | | **tags** | **Array<String>** | A list of tag keys that will be queryable for your metric. | | ## Example ```ruby require 'datadog_api_client/v2' instance = DatadogAPIClient::V2::MetricTagConfigurationCreateAttributes.new( aggregations: [{"space":"sum","time":"sum"},{"space":"sum","time":"count"}], include_percentiles: true, metric_type: null, tags: ["app","datacenter"] ) ```