forked from lcallarec/live-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
static-renderer.vala
85 lines (66 loc) · 2.61 KB
/
static-renderer.vala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
public class Example : Gtk.Window {
public Example() {
this.title = "Live Chart Demo";
this.destroy.connect(Gtk.main_quit);
this.set_default_size(800, 350);
var heap = new LiveChart.Serie("HEAP", new LiveChart.SmoothLineArea());
heap.line.color = { 0.3, 0.8, 0.1, 1.0};
var rss = new LiveChart.Serie("RSS", new LiveChart.Line());
rss.line.color = { 0.8, 0.1, 0.8, 1.0};
var threshold = new LiveChart.Serie("threshold", new LiveChart.ThresholdLine(185.0));
threshold.line.color = { 0.8, 0.1, 0.1, 1.0};
var max = new LiveChart.Serie("MAX OF ALL SERIES", new LiveChart.MaxBoundLine());
var mrss = new LiveChart.Serie("MAX HEAP", new LiveChart.MaxBoundLine.from_serie(rss));
max.line.color = { 0.8, 0.5, 0.2, 1.0};
mrss.line.color = { 0.5, 0, 1.0, 1.0};
var config = new LiveChart.Config();
config.y_axis.unit = "MB";
config.x_axis.tick_length = 60;
config.x_axis.tick_interval = 10;
config.x_axis.lines.visible = false;
var chart = new LiveChart.Chart(config);
chart.add_serie(heap);
chart.add_serie(rss);
chart.add_serie(threshold);
chart.add_serie(max);
chart.add_serie(mrss);
double rss_value = 200.0;
Timeout.add(1000, () => {
if (Random.double_range(0.0, 1.0) > 0.13) {
var new_value = Random.double_range(-50, 50.0);
if (rss_value + new_value > 0) rss_value += new_value;
}
rss.add(rss_value);
return true;
});
var heap_value = 200.0;
heap.add(heap_value);
Timeout.add(2000, () => {
if (Random.double_range(0.0, 1.0) > 0.2) {
var new_value = Random.double_range(-100, 100.0);
if (heap_value + new_value > 0) heap_value += new_value;
}
heap.add(heap_value);
return true;
});
var export_button = new Gtk.Button.with_label("Export to PNG");
export_button.clicked.connect (() => {
try {
chart.to_png("export.png");
} catch (Error e) {
GLib.error(e.message);
}
});
Gtk.Box box = new Gtk.Box(Gtk.Orientation.VERTICAL, 0);
box.pack_start(export_button, false, false, 5);
box.pack_start(chart, true, true, 0);
this.add(box);
}
}
static int main (string[] args) {
Gtk.init(ref args);
var view = new Example();
view.show_all();
Gtk.main();
return 0;
}