-
Notifications
You must be signed in to change notification settings - Fork 51
Description
Hi again Phil!
Tested on FreeBSD 12-stable and 13.0-RELEASE:
I noticed that "ps" sets the maximum length of the command field to 2048 characters [POSIX2_MAX_LENGTH] via the instructlion "{:command/%-0..2048s}", even when"-ww" is specified. "procstat -e" doesn't. Sigh.
Anyway, that's another issue, but in the process of checking this, I discovered that whilst libxo honours the maxlength for text, and html, it doesn't for XML, JSON, or CSV
As an example, try running this, and replacing the libxo output format as appropriate:
env -i $(jot 500 | awk '{print "testvar_"$0"=dummydummydummydummy"}') sh -c 'ps -wwe -p $$ --libxo xml'
Is this intentional? I couldn't find anything in the docs mentioning this.
Is this related to a kludgy fix for https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246514 ?
In my opinion, when or if or how fields should be truncated is a thorny issue, but whilst I find many implementations are messy, I still think it should be solely the responsibility of the calling program.
I.E. I don't think libxo should ignore the max width for some formats and not others...
Thoughts?
Cheers, Jamie