我目前正在使用以下aliasByMetric函数来衡量不同的内存利用率指标:
template<typename A,typename B>
Product<A,Transpose<const B> >
operator^(const MatrixBase<A> &a,const MatrixBase<B> &b) {
return a * b.transpose();
}
如何添加包含缓存,空闲和缓冲值的别名(因此它在图例上正确读取)?
我尝试了很多查询,包括:
aliasByMetric($prefix.$server.memory.memory.{cached,free,buffered})
但是没有运气。谁知道我做错了什么?