Make your metrics more visible.
Start pushing them to Slack with the Grapiture API.
curl -XPOST -H "Content-type: application/json" -d '{
"webhook": "https://hooks.slack.com/services/your/webhook/url",
"chart": {
"type": "line",
"data": {
"labels": ["1", "2", "3", "4", "5", "6", "7", "8", "9"],
"datasets": [{
"borderColor": "#000000",
"fill": false,
"lineTension": 0,
"data": [15, 15, 20, 10, 25, 10, 20, 18, 18]
}]
},
"options": {
"scales": {
"yAxes": [{
"ticks": {
"display": false,
"beginAtZero": true,
"stepSize": 5,
"suggestedMax": 50
},
"gridLines": {
"display": false
}
}],
"xAxes": [{
"ticks": {
"display": false
},
"gridLines": {
"display": false
}
}]
},
"legend": {
"display": false
},
"elements": {
"point": {
"radius": 0
}
}
}
}
}' 'https://grapiture.com/api/v1/chart'
