mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-14 15:18:44 +00:00
67 lines
1.1 KiB
YANG
67 lines
1.1 KiB
YANG
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|