Last active
April 26, 2023 22:45
-
-
Save sureshg/18f78f41a804ee44490db634590042c3 to your computer and use it in GitHub Desktop.
Revisions
-
sureshg renamed this gist
Apr 26, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
sureshg created this gist
Apr 26, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,179 @@ { "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "description": "A dual axis chart, created by setting y's scale resolution to `\"independent\"`", "width": 400, "height": 300, "data": { "values": [ { "process": "java", "time": "2023-04-27 00:00:00", "cpu": 10, "memory": 2200 }, { "process": "java", "time": "2023-04-27 00:01:00", "cpu": 34, "memory": 1250 }, { "process": "java", "time": "2023-04-27 00:02:00", "cpu": 23, "memory": 300 }, { "process": "java", "time": "2023-04-27 00:03:00", "cpu": 10, "memory": 4350 }, { "process": "java", "time": "2023-04-27 00:04:00", "cpu": 80, "memory": 1400 }, { "process": "java", "time": "2023-04-27 00:05:00", "cpu": 20, "memory": 4450 }, { "process": "java", "time": "2023-04-27 00:06:00", "cpu": 10, "memory": 2200 }, { "process": "java", "time": "2023-04-27 00:07:00", "cpu": 34, "memory": 1250 }, { "process": "java", "time": "2023-04-27 00:12:00", "cpu": 23, "memory": 300 }, { "process": "java", "time": "2023-04-27 00:15:00", "cpu": 10, "memory": 4350 }, { "process": "java", "time": "2023-04-27 00:24:00", "cpu": 80, "memory": 1400 }, { "process": "java", "time": "2023-04-27 00:25:00", "cpu": 20, "memory": 4450 } ] }, "encoding": { "x": { "field": "time", "type": "temporal", "axis": { "title": "Time" } }, "color": { "field": "process", "type": "nominal" } }, "layer": [ { "mark": { "type": "line", "stroke": "#6fbf98", "interpolate": "monotone" }, "encoding": { "y": { "field": "cpu", "type": "quantitative", "scale": { "domain": [ 0, 100 ] }, "title": "CPU Upsage (%)", "axis": { "titleColor": "#6fbf98" } } } }, { "mark": { "stroke": "#ae29bd", "type": "line", "interpolate": "monotone" }, "encoding": { "y": { "type": "quantitative", "field": "memory", "title": "Memory (MB)", "axis": { "titleColor": "#ae29bd" } } } }, { "mark": "rule", "encoding": { "opacity": { "condition": { "value": 0.3, "param": "hover", "empty": false }, "value": 0 }, "tooltip": [ { "field": "cpu", "type": "quantitative" }, { "field": "memory", "type": "quantitative" } ] }, "params": [ { "name": "hover", "select": { "type": "point", "fields": [ "time" ], "nearest": true, "on": "mouseover", "clear": "mouseout" } } ] } ], "resolve": { "scale": { "y": "independent" } } }