I use a lookup to define alert/SLO specifications. I use the lookups as input filters to my alert searches where I can. The lookup column name is sli_dimensions_alert: (there are other columns in th...
See more...
I use a lookup to define alert/SLO specifications. I use the lookups as input filters to my alert searches where I can. The lookup column name is sli_dimensions_alert: (there are other columns in the lookup): sli_dimensions_alert="env,service_name,type,class" The sli_dimensions_alert field specification can have multiple comma separated values. For example: sli_dimensions_alert="env,service_name,type,class" My goal is to create an alert_name based on that CSV value list. Example raw data: env="PRD" service_name="EXGMGR" type="ERROR" class="TIMEOUT" I want to create a macro, calculated field or automatic lookup to transform sli_dimensions_alert="env,service_name,type,class" into alert_name="PRD-EXGMGR-ERROR-TIMEOUT". I've tried a variety of combinations with split, mvjoin, mvmap, but haven't found a way to make it work.