We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug As per the new datadog dashboard, few attributes are not able to convert by the datadog converter plugin
To Reproduce Use the below JSON to reproduce the problem
{ "title": "An example screenboard which causes the issue" }
{ "title": "test.dev.edit", "description": "", "widgets": [ { "id": 6724092998888202, "layout": { "x": 8, "y": 20, "width": 8, "height": 6 }, "definition": { "title_size": "16", "title_align": "left", "type": "query_value", "requests": [ { "formulas": [ { "formula": "query1" } ], "response_format": "scalar", "queries": [ { "query": "avg:test.stats-cancellation}.rollup(86400)", "data_source": "metrics", "name": "query1", "aggregator": "last" } ] } ], "autoscale": false, "precision": 0 } } ], "template_variables": [ { "name": "DashEnv", "default": "prod2", "prefix": "environment" } ], "layout_type": "free", "is_read_only": false, "notify_list": [], "id": "a9e-yvm-s3z" } Expected terraform code It should be able to convert.
resource "datadog_dashboard" "not broken, woo!" { ... }
Screenshots If applicable, add screenshots to help explain your problem.
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
See PR #62
Sorry, something went wrong.
same issue with key 'query_config'
Truncated example:
{ "id": 1, "name": "foo", "options": { "queryConfig": { "track": "logs", "timeRange": { "to": 1630423439532, "live": true, "from": 1627831439532 }, "queryString": "example query", "indexes": [], "live": true, "queryIsFailed": false }, }, }
same issue with show_title ❗️Can't convert key 'show_title'
"widgets": [{ "id": 8450562588885112, "definition": { "title": "About Postgres", "title_align": "center", "type": "group", "show_title": false, }}
@millad90s Does it work with PR #62 applied ?
No branches or pull requests
Describe the bug
As per the new datadog dashboard, few attributes are not able to convert by the datadog converter plugin
To Reproduce
Use the below JSON to reproduce the problem
{
"title": "test.dev.edit",
"description": "",
"widgets": [
{
"id": 6724092998888202,
"layout": {
"x": 8,
"y": 20,
"width": 8,
"height": 6
},
"definition": {
"title_size": "16",
"title_align": "left",
"type": "query_value",
"requests": [
{
"formulas": [
{
"formula": "query1"
}
],
"response_format": "scalar",
"queries": [
{
"query": "avg:test.stats-cancellation}.rollup(86400)",
"data_source": "metrics",
"name": "query1",
"aggregator": "last"
}
]
}
],
"autoscale": false,
"precision": 0
}
}
],
"template_variables": [
{
"name": "DashEnv",
"default": "prod2",
"prefix": "environment"
}
],
"layout_type": "free",
"is_read_only": false,
"notify_list": [],
"id": "a9e-yvm-s3z"
}
Expected terraform code
It should be able to convert.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: