-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASELSAN-Sysrepo-OS-Metrics.yang
79 lines (76 loc) · 1.44 KB
/
ASELSAN-Sysrepo-OS-Metrics.yang
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
module ASELSAN-Sysrepo-OS-Metrics{
namespace "ASELSAN-Sysrepo-OS-Metrics";
prefix "asom";
rpc freeg {
description "free -g";
output {
leaf out {
type string;
description "output of free -g command";
}
}
}
rpc uptime {
description "uptime";
output {
leaf out {
type string;
description "output of uptime command";
}
}
}
rpc lscpu {
description "lscpu";
output {
leaf out {
type string;
description "output of lscpu command";
}
}
}
rpc top {
description "top -b -n 1 > out.txt";
output {
leaf out {
type string;
description "output of top -b -n 1 > out.txt command";
}
}
}
typedef timeformat {
type string {
pattern '[0-9]{2}:[0-9]{2}:[0-9]{2}';
}
description "time format is hh:mm:ss";
}
rpc set-time {
description "set the time";
input {
leaf newtime {
type timeformat;
description "Time to set.";
}
}
}
rpc get-time {
description "get the time";
output {
leaf time {
type string;
description "current time info on the server";
}
}
}
rpc sync-time{
description "sync the time";
}
rpc get-ip {
description "Get the server's IP address.";
output {
leaf ip-address {
type string;
description "IP address of the server.";
}
}
}
}