Skip to content

Commit

Permalink
Merge pull request openwrt#7092 from TDT-AG/pr/20240429-luci-app-keep…
Browse files Browse the repository at this point in the history
…alived

luci-app-keepalived: move status page to status menu
  • Loading branch information
feckert authored May 3, 2024
2 parents d9a6e5b + 9d52622 commit 6335449
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,24 @@ return view.extend({
}
}
}
return [
return [
target.data.iname,
target.data.ifp_ifname,
state,
target.stats.advert_sent,
target.stats.advert_rcvd,
new Date(target.data.last_transition * 1000)
];
];
}),
E('em', _('There are no active instances'))
);
});
});

return E([
E('h3', _('Keepalived Instances Status')),
E('br'),
table
return E('div', {'class': 'cbi-map'}, [
E('h2', _('VRRP')),
E('div', {'class': 'cbi-map-descr'}, _('This overview shows the current status of the VRRP instances on this device.')),
E('div', { 'class': 'cbi-section' }, table)
]);
},

Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
{
"admin/services/keepalived": {
"title": "Keepalived",
"title": "VRRP",
"order": 1,
"action": {
"type": "alias",
"path": "admin/services/keepalived/overview"
}
},

"admin/services/keepalived/overview": {
"title": "Overview",
"order": 10,
"action": {
"type": "view",
"path": "keepalived/overview"
"path": "admin/services/keepalived/globals"
}
},

Expand Down Expand Up @@ -105,5 +96,14 @@
"type": "view",
"path": "keepalived/vrrp_sync_group"
}
},

"admin/status/keepalived": {
"title": "VRRP",
"order": 10,
"action": {
"type": "view",
"path": "keepalived/overview"
}
}
}

0 comments on commit 6335449

Please sign in to comment.