Veryy helpful! Thx! My case is with three conditions , can you help me color different cases as such please? LogLevel : INFO -> Blue LogLevel : WARRNING -> Yellow LogLevel : Error -> Red ...
See more...
Veryy helpful! Thx! My case is with three conditions , can you help me color different cases as such please? LogLevel : INFO -> Blue LogLevel : WARRNING -> Yellow LogLevel : Error -> Red What I come up with is below but not working <format type="color">
<colorPalette type="expression">
if(match(value,"logLevel=INFO"),"#4f34eb",null),
if(match(value,"logLevel=WARNING"),"#ffff00",null),
if(match(value,"logLevel=ERROR"),"#53A051",null)
</colorPalette>
</format>