I extract with rex a field that contains numeric values, often with leading zeros. I want to display the values as strings, left aligned without getting leading zeros truncated. Example values: 00123, 22222, 12345_67 When showing these values in a dashboard table, the String values are interpreted as numbers, where possible, and I get 123 22222 12345_67 Is there a way to get string values correctly displayed as such in a dashboard table? I tried also the dirty way as proposed here, prefixing the strings with space or non-breaking-space, but it does not work (I'm on Splunk 9.0.4). It works when adding a visible char (e.g. "x"), but that makes the table unusable.
... View more