2023-11-15 10:17:55 +00:00
|
|
|
module show_memory {
|
|
|
|
|
2023-11-15 11:31:42 +00:00
|
|
|
namespace "https://bird.nic.cz/yang/v2.15/cli-debug";
|
2023-11-15 10:17:55 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|