vitess-gh/web/vtctld/config.js

13 строки
277 B
JavaScript
Исходник Обычный вид История

// This file contains config that may need to be changed
// on a site-local basis.
vtconfig = {
2015-07-23 00:51:22 +03:00
tabletLinks: function(tablet) {
return [
{
title: 'Status',
2015-08-10 23:24:14 +03:00
href: 'http://'+tablet.hostname+':'+tablet.port_map.vt+'/debug/status'
2015-07-23 00:51:22 +03:00
}
];
}
};