Getting ... (three dots) in analysis property results

I have a output file from one of our scripts which I am trying to read using the property relevance. Here are the contents of the file
Server test1 Rootvg is not Mirrored

LOGICAL VOLUME: hd4 VOLUME GROUP: rootvg
LV IDENTIFIER: 00c9450700004c000000015873847734470.4 PERMISSION: read/write
VG STATE: active/complete LV STATE: opened/syncd
TYPE: jfs2 WRITE VERIFY: off
MAX LPs: 512 PP SIZE: 128 megabyte(s)
COPIES: 1 SCHED POLICY: parallel
LPs: 16 PPs: 16
STALE PPs: 0 BB POLICY: relocatable
INTER-POLICY: minimum RELOCATABLE: yes
INTRA-POLICY: center UPPER BOUND: 32
MOUNT POINT: / LABEL: /
MIRROR WRITE CONSISTENCY: on/ACTIVE
EACH LP COPY ON A SEPARATE PV ?: yes
Serialize IO ?: NO
INFINITE RETRY: no

Below is the relevance I am using
concatenation “|” of lines of file “/tmp/rootvgmirror.log”

here is what fixlet debugger shows
Q: concatenation “|” of lines of file "/tmp/rootvgmirror.log"
A: Server test1 Rootvg is not Mirrored|| LOGICAL VOLUME: hd4 VOLUME GROUP: rootvg|LV IDENTIFIER: 00c9450700004c000000015873847734470.4 PERMISSION: read/write|VG STATE: active/complete LV STATE: opened/syncd|TYPE: jfs2 WRITE VERIFY: off|MAX LPs: 512 PP SIZE: 128 megabyte(s)|COPIES: 1 SCHED POLICY: parallel|LPs: 16 PPs: 16|STALE PPs: 0 BB POLICY: relocatable|INTER-POLICY: minimum RELOCATABLE: yes|INTRA-POLICY: center UPPER BOUND: 32|MOUNT POINT: / LABEL: /|MIRROR WRITE CONSISTENCY: on/ACTIVE |EACH LP COPY ON A SEPARATE PV ?: yes |Serialize IO ?: NO |INFINITE RETRY: no
T: 305

All i get on console for this property is “…”. Just 3 dots. Is there any thing that I am missing?

I believe the 3 dots means that you have exceeded the max character count.

1 Like

That would be correct

That means that the data is too long to be displayed on that console view.
If you open up the computer itself and look on the Summary tab, you should be able to view the full result for that property. You can also retrieve it in Web Reports, API, etc.

It just doesn’t display in the column view of the Analysis Results pane.

Thanks for the answers so far.
Unfortunately, that is not the case. I do not see anything in web reports as well. Just comes up as . So looks like since it has exceeded the characters for a single line, it just shows up as .
I would have to continue to output multi lines and try to combine it when reading analysis results.
Doing it at the endpoint level does not seem to work.
Let me know if there is a better way.

As suggested, the issue here is that the single answer’s character limit has been exceeded. Is there a reason you are concatenating all the lines of the file into a single line/answer?

few computers return single line as property result and others return multiple lines. While reading the analysis results, i wanted a one-liner as answer.
But i was able to modify my scripts to work with multi-line output so this issue is resolved. Thank you all.