0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-14 15:18:44 +00:00
bird/yang/show_memory.yang

67 lines
1.1 KiB
YANG
Raw Normal View History

2023-11-15 10:17:55 +00:00
module show_memory {
namespace ".";
prefix "memory";
description "cli show memory format";
container message {
leaf header {
type string;
}
container body {
container routing_tables {
leaf effective {
type int32;
}
leaf overhead {
type int32;
}
}
container route_attributes {
leaf effective {
type int32;
}
leaf overhead {
type int32;
}
}
container protocols {
leaf effective {
type int32;
}
leaf overhead {
type int32;
}
}
container current_config {
leaf effective {
type int32;
}
leaf overhead {
type int32;
}
}
container standby_memory {
leaf effective {
type int32;
}
leaf overhead {
type int32;
}
}
container total {
leaf effective {
type int32;
}
leaf overhead {
type int32;
}
}
}
}
}