newrelic

Deploying New Relic on Heroku Cedar (PHP)

大城市里の小女人 提交于 2019-11-30 09:00:21
Has anyone succesfully deployed the New Relic addon to a PHP app running on Heroku Cedar stack? I'm running a fairly high traffic Facebook app on a few dynos and can't get it to work. The best info I can find details a Python deployment: http://newrelic.com/docs/python/python-agent-and-heroku Thanks! Heroku has just recently rolled out support for PHP with Cedar and we at New Relic don't know anything more than you do. We'll be talking with Heroku ASAP to get some docs developed which will certainly be on ( New Relic's knowledge base ), and I'll report back here as well. Edited to add: Sorry

New Relic Class Not Found … I don't even use new relic

邮差的信 提交于 2019-11-30 08:21:17
I don't even use new relic and I'm getting errors for them. It just happened all of the sudden. I'm using the latest Android Studio build (0.61). Even my master branch has the same error. There are other projects on my machine that use new relic, but not this one. This project does not use new relic in any way, not so much as a wayward gradle dependency. I've tried clearing out my gradle cache and re-downloading all the third party libs, didn't work. StackTrace: 06-15 01:05:54.872 20117-20117/com.waxwings.happyhour.staging D/HappyHourApplication﹕ CREATE TABLE job_holder (_id integer primary

Application crashes in onCreate due to newrelic exception

隐身守侯 提交于 2019-11-30 05:14:56
问题 I've created an Android app using Android Studio beta 0.8.2 and all was going well until the last few days when i started getting this exception just as i run it: 07-24 14:50:11.044 1176-1176/com.vme.vme I/Crashlytics﹕ Initializing Crashlytics 1.1.11.10 07-24 14:50:11.764 2325-2325/system_process D/MobileDataStateTracker﹕ default: Broadcast received: android.intent.action.ANY_DATA_STATE apnType=default 07-24 14:50:11.769 2325-2325/system_process D/MobileDataStateTracker﹕ default: Received

long delays in AcquireRequestState

回眸只為那壹抹淺笑 提交于 2019-11-30 04:41:49
Using performance monitoring tool "New Relic" I am seeing occasional (but too many) long delays in the "AcquireRequestState". I am talking about 10, 20 second delays, sometimes minutes. I know we have not written our own event handlers for this event. Where do I even begin looking for the cause of these delays? The little information I have found so far on msdn has not been helpful. My team saw this "AcquireRequestState" delay reported by NewRelic earlier today when one of our ASP.NET applications was having performance problems on a particular page. The root cause turned out to be a change to

long delays in AcquireRequestState

前提是你 提交于 2019-11-29 01:53:53
问题 Using performance monitoring tool "New Relic" I am seeing occasional (but too many) long delays in the "AcquireRequestState". I am talking about 10, 20 second delays, sometimes minutes. I know we have not written our own event handlers for this event. Where do I even begin looking for the cause of these delays? The little information I have found so far on msdn has not been helpful. 回答1: My team saw this "AcquireRequestState" delay reported by NewRelic earlier today when one of our ASP.NET

How to apply plugin to only one flavor in gradle?

一曲冷凌霜 提交于 2019-11-28 06:13:27
I have a multi-flavored, multi-build-typed android project and I want to integrate the NewRelic plugin. But I have to apply it only for one of the customers, thus only for one product flavor. NewRelic uses instrumentation and the plugin would generate code in other flavors if I applied the plugin there, and that is not permitted for us. So my question is: How can I use the apply plugin: something command in the gradle file to be applied to only one of my flavors? Pavel Santaev Use this code: if (!getGradle().getStartParameter().getTaskRequests() .toString().contains("Develop")){ apply plugin:

How to apply plugin to only one flavor in gradle?

心已入冬 提交于 2019-11-27 01:13:54
问题 I have a multi-flavored, multi-build-typed android project and I want to integrate the NewRelic plugin. But I have to apply it only for one of the customers, thus only for one product flavor. NewRelic uses instrumentation and the plugin would generate code in other flavors if I applied the plugin there, and that is not permitted for us. So my question is: How can I use the apply plugin: something command in the gradle file to be applied to only one of my flavors? 回答1: Use this code: if (

What perfmon counters are useful for identifying ASP.NET bottlenecks?

妖精的绣舞 提交于 2019-11-26 18:00:45
Given the chart here, what should I be looking at to identify the bottleneck? As you can see, requests are averaging nearly 14 seconds under load and the bulk of that time is attributed to the CLR in New Relic's profiling data. In the performance breakdown for a particular page, it attributes the bulk of the time to the WebTransaction/.aspx page. Aristos I see that the database is readed also (the orange) and this is seams that one of all pages have delay the rest of pages because of the lock that session make on the pages. you can read also : Replacing ASP.Net's session entirely My suggestion

What perfmon counters are useful for identifying ASP.NET bottlenecks?

跟風遠走 提交于 2019-11-26 08:53:43
问题 Given the chart here, what should I be looking at to identify the bottleneck? As you can see, requests are averaging nearly 14 seconds under load and the bulk of that time is attributed to the CLR in New Relic\'s profiling data. In the performance breakdown for a particular page, it attributes the bulk of the time to the WebTransaction/.aspx page. 回答1: I see that the database is readed also (the orange) and this is seams that one of all pages have delay the rest of pages because of the lock

What happens in BeginProcessRequest()?

拜拜、爱过 提交于 2019-11-26 08:47:46
问题 We are using NewRelic to provide server-side application traces. We have noticed that some of our applications consistently spend about 100ms in the method System.Web.Mvc.MvcHandler.BeginProcessRequest() . This happens before any custom controller code is called (which is logged separately, and not cumulatively) - it\'s not obvious why it would be spending so much time in this method. What kinds of things will MVC do in this method? Could this simply be request queuing? [EDIT:] As suspected -