RFR(s): 8149036: Add UL tracing for thread related events at os level
Thomas Stüfe
thomas.stuefe at gmail.com
Wed Feb 24 18:50:37 UTC 2016
On Wed, Feb 24, 2016 at 7:05 PM, Coleen Phillimore <
coleen.phillimore at oracle.com> wrote:
>
> This looks quite a bit nicer. I will test compilation on solaris when I
> sponsor it.
>
>
Thank you :)
>
> That is a hot topic in our group and usually frowned at, because
> unexpected warning output (which may or may not matter to the customer)
> disturbs automated processes parsing this output.
>
>
> I *thought* all warnings came out by default and the tags were
> decorations. Currently warning() call will print the warning because
> PrintWarnings defaults to true. Isn't logging the same?
>
>
Oh, you are right. It normally makes also sense.
But well, this will be easy enough to override once we integrate UL into
our VM. Maybe we just set the default logging level to off.
Thanks, Thomas
> thanks,
> Coleen
>
>
>
>
>>
>>> btw, I found the command line a bit confusing:
>>>
>>> If a logging call is tagged with two tags A and B, I would have thought
>>> the
>>> default behaviour of "-Xlog:A" is to log all calls tagged at least with
>>> A,
>>> not all calls which are solely tagged with A and nothing else. I could
>>> not
>>> even think ot a use case for the latter.
>>>
>>
>> The syntax/semantics is somewhat subjective and obviously have to be
>> learned. I like the fact -Xlog:os only turns on things tagged only with
>> "os".
>>
>> After some searching, I found that the behaviour I want and I would think
>>> makes sense as default is "-Xlog:A*".
>>>
>>
>> -Xlog:help shows
>>
>> -Xlog Usage: -Xlog[:[what][:[output][:[decorators][:output-options]]]]
>> where 'what' is a combination of tags and levels on the form
>> tag1[+tag2...][*][=level][,...]
>> Unless wildcard (*) is specified, only log messages tagged with
>> exactly the tags specified will be matched.
>>
>> This also means that log lines will be mysteriously disappearing from
>>> output if someone adds another tag to that line, unless I always use an
>>> asterix? Or am I just slow to understand the command line syntax?
>>>
>>
>> Unfortunately you need to know how the code is tagged to know what log
>> output to ask for. Once we put these in place we're introducing a new set
>> of compatibility constraints that will make it hard to rework the tagging
>> in the future.
>>
>>
> Well, I think this design decision (if it even was a deliberate decision)
> is unfortunate. In the end, like Coleen writes, many may decide to skip to
> not use multiple tags. Which is unfortunate, because the ability to have
> multiple tags per command line is quite a cool feature.
>
> I also still fail to see any use case where I would want to log a tag but
> only those log sites which are not tagged with something different too.
> Similarly to a keyword based item search - One usually wants all items for
> a keyword and does not care if the item is tagged with other keywords too.
>
> Thanks,
>
> Thomas
>
>
>> Thanks,
>> David
>>
>>
>> Kind Regards, Thomas
>>>
>>>
>>>
>>>
>>>
>>>
>>> On Tue, Feb 23, 2016 at 6:52 PM, Marcus Larsson <
>>> <marcus.larsson at oracle.com>marcus.larsson at oracle.com>
>>> wrote:
>>>
>>> Hi,
>>>>
>>>> On 2016-02-22 17:54, Thomas Stüfe wrote:
>>>>
>>>> Dear all,
>>>>>
>>>>> please take a look at this proposed addition to UL. This adds a number
>>>>> of
>>>>> trace points to thread creation. In detail:
>>>>>
>>>>> - it traces thread creation and thread creation errors, including
>>>>> pthread
>>>>> attributes (for Posix platforms)
>>>>> - it traces stack location and creation/removal of stack guard pages.
>>>>>
>>>>> This all was first AIX-only tracing, but I converted this to UL and
>>>>> made
>>>>> it
>>>>> available on all platforms.
>>>>>
>>>>> Bug: https://bugs.openjdk.java.net/browse/JDK-8149036
>>>>> Webrev:
>>>>>
>>>>>
>>>>> http://cr.openjdk.java.net/~stuefe/webrevs/8149036-add-tracing-for-thread-events/webrev.00/webrev/
>>>>>
>>>>>
>>>> It might be a good idea to add a 'thread' tag and use that in addition
>>>> to
>>>> the os tag for these messages. It would allow easy filtering of these
>>>> messages for those interested/uninterested. Just 'os' alone is quite a
>>>> wide
>>>> area.
>>>>
>>>> Thanks,
>>>> Marcus
>>>>
>>>>
>>>> Note also that I added a helper function, os::errno_name(), which is a
>>>> very
>>>>
>>>>> simple replacement for strerror() without its problems (thread safety,
>>>>> unwanted localizations...).
>>>>>
>>>>> What do you think?
>>>>>
>>>>> Kind Regards, Thomas
>>>>>
>>>>>
>>>>
>>>>
>
>
More information about the hotspot-runtime-dev
mailing list