Member since
03-09-2021
3
Posts
1
Kudos Received
0
Solutions
07-28-2021
06:17 AM
Hi,
I am new to Datadog and I want to create a dashboard with Jira content. The dashboard which I am looking should have Jira Sprint board information also the status of each tickets.
Basically the Jira sprint board and ticket's status should be monitored in Datadog dashboard instead of Jira dashboard.
@DataDog
Thanks!
... View more
Labels:
- Labels:
-
Apache Hadoop
03-09-2021
03:13 AM
1 Kudo
@NIFIJOLT This is working as I expected. Thank you so much!!!
... View more
03-09-2021
02:01 AM
Can anyone please help me a JOLT spec to convert my matrix type json to denormalized json. Please find the below my input json and my expected josn output. Input Json: [
{
"attributes": [
{
"name": "brand",
"value": "Patriot Lighting"
},
{
"name": "color",
"value": "Chrome"
},
{
"name": "price",
"value": "49.97 USD"
}
]
},
{
"attributes": [
{
"name": "brand",
"value": "Masterforce"
},
{
"name": "color",
"value": "Green"
},
{
"name": "price",
"value": "99.0 USD"
}
]
}
] Expected Json output: [
{
"brand": "Patriot Lighting",
"color": "Chrome",
"price": "49.97 USD"
},
{
"brand": "Masterforce",
"color": "Green",
"price": "99.0 USD"
}
] I was trying to build JOLT spec to convert this json. But challenge is the json which I have multiple tables with "attributes" tag. @Json @NIFIJOLT Thanks in advance!
... View more
Labels: