converting Scalyr dashboards to Sumo dashboards
Is there any tools that would convert a Scalyr dashboard into a Sumo one ?
I've this Scalyr one in JSON:
{
description: "This page lists each unique URI path requested from any server for which you are uploading" +
" access logs. If you do not see any data, either you are not uploading access logs or you have not" +
" specified a log parser. See [Analyze Access Logs](/solutions/analyze-access-logs) for help.",
graphs: [
{
title: "HTTP requests, by path ",
keys: [
{ label: "Path", attribute: "uriPath", href: "events?filter=uriPath%3D'#uriPath#'", maxDisplayLength: 100 }
],
columns: [
{
label: "Count",
filter: "dataset='accesslog'",
function: "count"
}, {
label: "2xx",
filter: "dataset='accesslog' status >= 200 status <= 299",
function: "count"
}, {
label: "3xx",
filter: "dataset='accesslog' status >= 300 status <= 399",
function: "count"
}, {
label: "4xx",
filter: "dataset='accesslog' status >= 400 status <= 499",
function: "count"
}, {
label: "5xx",
filter: "dataset='accesslog' status >= 500 status <= 599",
function: "count"
}, {
label: "Average Size",
filter: "dataset='accesslog'",
attribute: "bytes",
function: "mean"
}, {
label: "Total Size",
filter: "dataset='accesslog'",
attribute: "bytes",
function: "sum"
}
],
sort: [ "-Count" ]
}
]
}
Please sign in to leave a comment.
Comments
0 comments