# DatadogAPIClient::V2::MetricTagConfigurationAttributes ## 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] | | **created_at** | **Time** | Timestamp when the tag configuration was created. | [optional] | | **include_percentiles** | **Boolean** | Toggle to turn on/off percentile aggregations for distribution metrics. Only present when the `metric_type` is `distribution`. | [optional] | | **metric_type** | [**MetricTagConfigurationMetricTypes**](MetricTagConfigurationMetricTypes.md) | | [optional][default to 'gauge'] | | **modified_at** | **Time** | Timestamp when the tag configuration was last modified. | [optional] | | **tags** | **Array<String>** | List of tag keys on which to group. | [optional] | ## Example ```ruby require 'datadog_api_client/v2' instance = DatadogAPIClient::V2::MetricTagConfigurationAttributes.new( aggregations: [{"space":"sum","time":"sum"},{"space":"sum","time":"count"}], created_at: 2020-03-31T09:48:37.463835Z, include_percentiles: true, metric_type: null, modified_at: 2020-03-31T09:48:37.463835Z, tags: ["app","datacenter"] ) ```