0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-12 14:18:43 +00:00
bird/yang/show_memory.yang
2023-11-15 12:31:42 +01:00

67 lines
1.1 KiB
YANG

module show_memory {
namespace "https://bird.nic.cz/yang/v2.15/cli-debug";
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;
}
}
}
}
}