jenkins 2.138.2 and youMonitor

Questions about YourKit YouMonitor
Locked
jmuczynski
Posts: 6
Joined: Mon Oct 15, 2018 4:29 pm

jenkins 2.138.2 and youMonitor

Post by jmuczynski »

Hi guys,

I read the help and the other post and it looks like I've configured things well. I even see
[YouMonitor] build monitoring has finished.
[YouMonitor] remote logs have been copied to /var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2

in my job's output. I'm doing a multibranch pipeline on Jenkins version 2.138.2
When I try to connect to Jenkins I get the "There are no repositories on the server" message.
Hmm... guess I can't paste a screen capture into this interface?

So I've installed the plugin for 2018.10-b14 and I'm using the windows executable for that same version.
And the pipeline has been updated with the "youMonitor" syntax.
Thus the output log shows the text mentioned above.
The User name and API Token are correct because it doesn't give me an authentication error.
The jenkins address (http://jenkins.dev.simuquest.com:8080) is okay because it work in the browser, and because it authenticates. We only have one Jenkins instance.
The job has completed, but still .... no repository.

What do you think would be my next step to debug this?
Ilia
Posts: 3
Joined: Mon Oct 15, 2018 8:12 pm

Re: jenkins 2.138.2 and youMonitor

Post by Ilia »

Hi,
Do you see something wrong in Jenkins log?
http://jenkins.dev.simuquest.com:8080/l ... %20Plugin/

You can also check in a browser whether plugin actually provides any repository data:
http://jenkins.dev.simuquest.com:8080/y ... positories
The output should look like this

Code: Select all

{"message":{"repositories":[{"guid":"c573po4agy0skuf2","displayName":"your job name"}]}}
jmuczynski
Posts: 6
Joined: Mon Oct 15, 2018 4:29 pm

Re: jenkins 2.138.2 and youMonitor

Post by jmuczynski »

Thanks for the URLs. That made it really easy for me to dig into this.

bummer, I'm getting
{"message":{"repositories":[]}}
That's bad news. Confirms what we were already guessing. Clearly the problem is on the jenkins plugin side and not the windows exe side.

Here's more details.
(I ran the job a second time.) The log contains the text below. Blank lines added by me.

Oct 15, 2018 9:16:09 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Updating super repository /var/lib/jenkins/youmonitor/repositories
Oct 15, 2018 9:16:09 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories; cannot list super repository directory

Oct 15, 2018 10:11:24 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Updating super repository /var/lib/jenkins/youmonitor/repositories
Oct 15, 2018 10:11:24 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories/3cxvkt9qnupjntfg; not a repository

Oct 15, 2018 11:52:17 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Updating super repository /var/lib/jenkins/youmonitor/repositories
Oct 15, 2018 11:52:17 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2; not a repository
Oct 15, 2018 11:52:17 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories/3cxvkt9qnupjntfg; not a repository

Oct 15, 2018 12:47:06 PM INFO com.yourkit.plugins.jenkins.PluginLogger info
Updating super repository /var/lib/jenkins/youmonitor/repositories
Oct 15, 2018 12:47:06 PM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2; not a repository
Oct 15, 2018 12:47:06 PM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories/3cxvkt9qnupjntfg; not a repository
Clear This Log

* The first run of the job was at 11:48am
* The second run of the job was at 12:45pm
* (I ran a different job at 9:22am, but it is a long-running job and ended up being cancelled rather than running to success.)
Ilia
Posts: 3
Joined: Mon Oct 15, 2018 8:12 pm

Re: jenkins 2.138.2 and youMonitor

Post by Ilia »

Thanks for the log. Could you please test the newer build while we're investigating:
https://www.yourkit.com/youmonitor/eap/
Ilya Kalikin
Posts: 16
Joined: Mon Jun 12, 2017 3:06 pm

Re: jenkins 2.138.2 and youMonitor

Post by Ilya Kalikin »

An update. There was a bug in the plugin in build 19 which is fixed in build 20 (will be uploaded soon).
We also added some more logging.
Please check Jenkins logs for exceptions: http://jenkins.dev.simuquest.com:8080/log/all

Could you also list the repository directory in console? There should be a repository.json file.

Code: Select all

ll /var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2/.youmonitor
Alternatively, you can do it from the Jenkins script console: http://jenkins.dev.simuquest.com:8080/script

Code: Select all

new File("/var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2/.youmonitor").listFiles().each{println it.text}
jmuczynski
Posts: 6
Joined: Mon Oct 15, 2018 4:29 pm

Re: jenkins 2.138.2 and youMonitor

Post by jmuczynski »

I did the
ll /var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2/.youmonitor
There are no files there. There is no ".youmonitor"

Thus, the

Code: Select all

new File("/var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2/.youmonitor").listFiles().each{println it.text}
results in:
Result
Result: null
The youmonitor tree of folders does have some log files, however.
I have a logs.tar I can upload. Um, I don't see any way to attach that here.

I'll try build 20 later when it is available.
Ilya Kalikin
Posts: 16
Joined: Mon Jun 12, 2017 3:06 pm

Re: jenkins 2.138.2 and youMonitor

Post by Ilya Kalikin »

New build is ready. Please install the plugin and repeat Jenkins build. Wait until jobs end and try to connect again. Check Jenkins log for any errors http://jenkins.dev.simuquest.com:8080/log/all
If the problem persists, please send an archive with /var/lib/jenkins/youmonitor/repositories directory to [email protected]
jmuczynski
Posts: 6
Joined: Mon Oct 15, 2018 4:29 pm

Re: jenkins 2.138.2 and youMonitor

Post by jmuczynski »

Here's the log all:


SqLicensing #20181016.111200 branch indexing action completed: SUCCESS in 5.1 sec
Oct 16, 2018 11:13:58 AM WARNING org.eclipse.jetty.server.handler.ContextHandler$Context log
Error while serving http://jenkins.dev.simuquest.com:8080/j ... test/trend
java.lang.NoClassDefFoundError: Could not initialize class org.jfree.chart.JFreeChart
at org.jfree.chart.ChartFactory.createStackedAreaChart(ChartFactory.java:1124)
at hudson.tasks.test.AbstractTestResultAction.createChart(AbstractTestResultAction.java:362)
at hudson.tasks.test.AbstractTestResultAction.doGraph(AbstractTestResultAction.java:303)
at hudson.tasks.test.TestResultProjectAction.doTrend(TestResultProjectAction.java:111)
at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
at org.kohsuke.stapler.Function$MethodFunction.invoke(Function.java:343)
Caused: java.lang.reflect.InvocationTargetException
at org.kohsuke.stapler.Function$MethodFunction.invoke(Function.java:347)
at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:184)
at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:117)
at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:129)
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.MetaClass$10.dispatch(MetaClass.java:374)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.MetaClass$5.doDispatch(MetaClass.java:248)
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.MetaClass$5.doDispatch(MetaClass.java:248)
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:668)
at org.kohsuke.stapler.Stapler.service(Stapler.java:238)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:865)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1655)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:154)
at org.jenkinsci.plugins.ssegateway.Endpoint$SSEListenChannelFilter.doFilter(Endpoint.java:225)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at io.jenkins.blueocean.ResourceCacheControl.doFilter(ResourceCacheControl.java:134)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at io.jenkins.blueocean.auth.jwt.impl.JwtAuthenticationFilter.doFilter(JwtAuthenticationFilter.java:61)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at hudson.plugins.greenballs.GreenBallFilter.doFilter(GreenBallFilter.java:59)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at hudson.plugins.scm_sync_configuration.extensions.ScmSyncConfigurationFilter$1.call(ScmSyncConfigurationFilter.java:49)
at hudson.plugins.scm_sync_configuration.extensions.ScmSyncConfigurationFilter$1.call(ScmSyncConfigurationFilter.java:44)
at hudson.plugins.scm_sync_configuration.ScmSyncConfigurationDataProvider.provideRequestDuring(ScmSyncConfigurationDataProvider.java:106)
at hudson.plugins.scm_sync_configuration.extensions.ScmSyncConfigurationFilter.doFilter(ScmSyncConfigurationFilter.java:44)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:157)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:105)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
at hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at jenkins.security.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:117)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at jenkins.security.BasicHeaderProcessor.doFilter(BasicHeaderProcessor.java:93)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
at hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:90)
at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:171)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:49)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:82)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.kohsuke.stapler.DiagnosticThreadNameFilter.doFilter(DiagnosticThreadNameFilter.java:30)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:524)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.Server.handle(Server.java:531)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:333)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:310)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:168)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:126)
at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:366)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
at java.lang.Thread.run(Thread.java:748)

Oct 16, 2018 11:13:59 AM WARNING org.eclipse.jetty.server.handler.ContextHandler$Context log
Error while serving http://jenkins.dev.simuquest.com:8080/j ... t/trendMap
java.lang.NoClassDefFoundError: Could not initialize class org.jfree.chart.JFreeChart
at org.jfree.chart.ChartFactory.createStackedAreaChart(ChartFactory.java:1124)
at hudson.tasks.test.AbstractTestResultAction.createChart(AbstractTestResultAction.java:362)
at hudson.tasks.test.AbstractTestResultAction.doGraphMap(AbstractTestResultAction.java:312)
at hudson.tasks.test.TestResultProjectAction.doTrendMap(TestResultProjectAction.java:122)
at java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:627)
at org.kohsuke.stapler.Function$MethodFunction.invoke(Function.java:343)
Caused: java.lang.reflect.InvocationTargetException
at org.kohsuke.stapler.Function$MethodFunction.invoke(Function.java:347)
at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:184)
at org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:117)
at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:129)
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.MetaClass$10.dispatch(MetaClass.java:374)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.MetaClass$5.doDispatch(MetaClass.java:248)
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.MetaClass$5.doDispatch(MetaClass.java:248)
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:734)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:864)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:668)
at org.kohsuke.stapler.Stapler.service(Stapler.java:238)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:865)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1655)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:154)
at org.jenkinsci.plugins.ssegateway.Endpoint$SSEListenChannelFilter.doFilter(Endpoint.java:225)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at io.jenkins.blueocean.ResourceCacheControl.doFilter(ResourceCacheControl.java:134)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at io.jenkins.blueocean.auth.jwt.impl.JwtAuthenticationFilter.doFilter(JwtAuthenticationFilter.java:61)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at hudson.plugins.greenballs.GreenBallFilter.doFilter(GreenBallFilter.java:59)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at hudson.plugins.scm_sync_configuration.extensions.ScmSyncConfigurationFilter$1.call(ScmSyncConfigurationFilter.java:49)
at hudson.plugins.scm_sync_configuration.extensions.ScmSyncConfigurationFilter$1.call(ScmSyncConfigurationFilter.java:44)
at hudson.plugins.scm_sync_configuration.ScmSyncConfigurationDataProvider.provideRequestDuring(ScmSyncConfigurationDataProvider.java:106)
at hudson.plugins.scm_sync_configuration.extensions.ScmSyncConfigurationFilter.doFilter(ScmSyncConfigurationFilter.java:44)
at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:151)
at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:157)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:105)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
at hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at jenkins.security.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:117)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at jenkins.security.BasicHeaderProcessor.doFilter(BasicHeaderProcessor.java:93)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
at hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)
at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:90)
at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:171)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:49)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:82)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.kohsuke.stapler.DiagnosticThreadNameFilter.doFilter(DiagnosticThreadNameFilter.java:30)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:524)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.Server.handle(Server.java:531)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:333)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:310)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:168)
at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:126)
at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:366)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
at java.lang.Thread.run(Thread.java:748)

Oct 16, 2018 11:14:06 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
SqLicensing #20181016.111400 branch indexing action completed: SUCCESS in 5.7 sec
Oct 16, 2018 11:14:08 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
ROXOR #20181016.111400 branch indexing action completed: SUCCESS in 7.4 sec
Oct 16, 2018 11:15:06 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
QuantiPhiRE #20181016.111500 branch indexing action completed: SUCCESS in 5.2 sec
Oct 16, 2018 11:16:06 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
SqLicensing #20181016.111600 branch indexing action completed: SUCCESS in 5.4 sec
Oct 16, 2018 11:16:18 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
run log file: /var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2/logs/8mviv91e87udw2u8.lgxktiu7yl.log
Oct 16, 2018 11:17:03 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
javaimage #20181016.111700 branch indexing action completed: SUCCESS in 2.4 sec
Oct 16, 2018 11:18:04 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
QuantiPhiRE #20181016.111800 branch indexing action completed: SUCCESS in 3.6 sec
Oct 16, 2018 11:18:05 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
SqLicensing #20181016.111800 branch indexing action completed: SUCCESS in 4.8 sec
Oct 16, 2018 11:18:31 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Updating super repository /var/lib/jenkins/youmonitor/repositories; found=0; jobs=0
Oct 16, 2018 11:18:31 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories/c573po4agy0skuf2; not a repository
Oct 16, 2018 11:18:31 AM INFO com.yourkit.plugins.jenkins.PluginLogger info
Skip /var/lib/jenkins/youmonitor/repositories/3cxvkt9qnupjntfg; not a repository
Oct 16, 2018 11:18:40 AM INFO org.jenkinsci.plugins.workflow.job.WorkflowRun finish
SqLicensing/trunk #110 completed: FAILURE
Oct 16, 2018 11:20:06 AM INFO jenkins.branch.MultiBranchProject$BranchIndexing run
SqLicensing #20181016.112000 branch indexing action completed: SUCCESS in 5.3 sec
jmuczynski
Posts: 6
Joined: Mon Oct 15, 2018 4:29 pm

Re: jenkins 2.138.2 and youMonitor

Post by jmuczynski »

I emailed the logs to [email protected]

Thanks for your assistance.
Ilya Kalikin
Posts: 16
Joined: Mon Jun 12, 2017 3:06 pm

Re: jenkins 2.138.2 and youMonitor

Post by Ilya Kalikin »

Could you please provide the output of this command in the Jenkins script console
http://jenkins.dev.simuquest.com:8080/script

Code: Select all

Jenkins.instance.getAllItems(Job.class).each{ 
  println it.name + " - " + it.class
  }
Ilya Kalikin
Posts: 16
Joined: Mon Jun 12, 2017 3:06 pm

Re: jenkins 2.138.2 and youMonitor

Post by Ilya Kalikin »

... and if its empty please also try:

Code: Select all

Jenkins.instance.getAllItems().each{
  println it.name + " - " + it.class
  }
Vladimir Kondratyev
Posts: 1624
Joined: Tue Aug 10, 2004 7:52 pm

Re: jenkins 2.138.2 and youMonitor

Post by Vladimir Kondratyev »

Just a follow-up to Ilya's post:

How global security is configured in your Jenkins server: "Logged-in users can do anything", "Matrix-based security" or something else?

Best regards,
Vladimir Kondratyev
YourKit GmbH
http://www.yourkit.com
"Don't get lost in data, get information!"
jmuczynski
Posts: 6
Joined: Mon Oct 15, 2018 4:29 pm

Re: jenkins 2.138.2 and youMonitor

Post by jmuczynski »

Hi Vladimir,

I replied to Ilya's post at [email protected] because the output contained customer names.

In answer to your question: Yes, "Logged-in users can do anything"
and also
Jenkins’ own user database

I'll paste the whole page into an HTML email and send it to [email protected]

Jenkins version Jenkins ver. 2.138.2

Would it help to see the versions of plugins?

Kind Regards,
Johnny
Ilya Kalikin
Posts: 16
Joined: Mon Jun 12, 2017 3:06 pm

Re: jenkins 2.138.2 and youMonitor

Post by Ilya Kalikin »

Hi Johnny,
We have updated Jenkins plugin: https://www.yourkit.com/youmonitor/eap/
Install it and run a job, you should now see the job in the "Open repository..." dialog.
Could you also send us Jenkins logs after the build for further analyzing?
Thank you.
Locked