package metricshelper

import 

func ( network.Direction) string {
	switch  {
	case network.DirOutbound:
		return "outbound"
	case network.DirInbound:
		return "inbound"
	default:
		return "unknown"
	}
}