func getClusterName()

in pkg/formatter/text_template_utils.go [235:240]


func getClusterName(cluster *models.ElasticsearchClusterInfo) string {
	if cluster.ClusterName == nil || *cluster.ClusterName != *cluster.ClusterID {
		return trimToLen(*cluster.ClusterName, 32)
	}
	return "-"
}