{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MetricStreamFilter",
"title": "MetricStreamFilter",
"type": "object",
"description": "Contains the configuration for a metric stream filter.",
"properties": {
"Namespace": {
"type": "string",
"description": "The name of the metric namespace in the filter.",
"example": "example_value"
},
"MetricNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "The names of the metrics to either include or exclude from the metric stream.",
"example": []
}
}
}