Questions tagged [raygun]

Automatic error tracking and crash reporting - raygun.io

Raygun notifies you when errors occur in your app with intelligent grouping and the complete stack trace in real time.

Whether your code is running in a data center or on a million mobile devices, Raygun gives you the data you need to fix bugs fast.

38 questions
1
vote
1 answer

Log4net Raygun Tags

Is there any way to set the raygun tags in config level I have tried in code level for exception new RaygunClient().SendInBackground(exception, new List { "Error", "Mq-Translator" }); But I would need to set the tag in project level for…
Lee
  • 139
  • 1
  • 1
  • 8
1
vote
2 answers

Why does Raygun on .NET Native cause my app to crash?

I'm working on a Windows 10 Store application where I'm using Raygun.io (5.2.0). We released the app couple of times (latest in mid December) I see in Rayguns web interface the logs coming from previous versions. While testing the app now before…
cosmo
  • 187
  • 2
  • 11
1
vote
1 answer

Android/Gradle: specify a dependency for a subset of build types

The android project I'm working on has 3 build types - debug, qa and release: buildTypes { release { ... } qa { ... } debug { ... } } I would like to have a dependency (crash reporting library) only…
user1405990
  • 806
  • 1
  • 8
  • 19
1
vote
1 answer

How do I shut down my process after using Raygun's express-handler?

I'm building an app with NodeJS and Express and have recently incorporated error handling with Raygun. Raygun provides an error handler specifically for use with Express, but it must be the last piece of middleware to run. Right now I have: //Log…
tcmoore
  • 1,129
  • 1
  • 12
  • 29
1
vote
1 answer

RaygunMessage does not list request data

It is critical to us that we do not log post data (i.e. the POST body of HTTP POST requests) in Raygun. However, all other request data is fine. We were previously calling the overload of RaygunClient.Send() which accepts an exception, like…
David
  • 15,750
  • 22
  • 90
  • 150
1
vote
1 answer

Setting up Raygun on a WCF REST Service

I'm trying to set up Raygun.io on a WCF service, and despite the simple instructions on the site, am having little luck getting things running. I've signed up for my account, installed the Mindscape.Raygun4Net package via Nuget, then tried the…
Maloric
  • 5,525
  • 3
  • 31
  • 46
0
votes
1 answer

Raygun does not record the version, when using the NLog Raygun target

On a .NET Framework WebAPI service, using Raygun and NLog. When an exception happens, Raygun tracks the correct version of the executing assembly. But when the error is reported via NLog Raygun target, it only says Could not find value for entry…
Hinek
  • 9,519
  • 12
  • 52
  • 74
0
votes
1 answer

Raygun TypeError [ERR_INVALID_ARG_TYPE]

Today I decided to do some experiments with the Raygun trial. And after installing the package and the agent I'm receiving errors every time a request has been made to my service. [raygun-apm] Encountered an error building a trace: TypeError…
0
votes
1 answer

NLog Raygun - How to catch exception when calling SendInBackground

I forked the NLog Raygun from Mindscape to provide more settings of Raygun in NLog. A RaygunTarget is created and needs to override Write method as follows NLog document (https://github.com/NLog/NLog/wiki/How-to-write-a-custom-target). To send an…
Steve Lam
  • 979
  • 1
  • 17
  • 40
0
votes
1 answer

Raygun client unable to send - failed resolution of InetAddressUtils

Is anyone who is using Raygun in their Android apps seeing this error exception: java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/conn/util/InetAddressUtils; at…
Nick Wright
  • 1,403
  • 13
  • 19
0
votes
1 answer

ReferenceError: raygunUtilityFactory is not defined

I am trying to implement raygun for a react-native app. I am running into problems with jest and I am not sure of the best approach given the window does not exist. In my package.json I have already added the following: "globals": { "window":…
Lilp
  • 961
  • 1
  • 11
  • 31
0
votes
0 answers

BundleConfig and naming JS variables

I am wondering if it is possible to name raygun variables using the BundleConfig file. SO in my bundle I add my scripts as so: bundles.Add(new ScriptBundle("~/master.js").Include( "~/static/js/json2.js", …
SomeStudent
  • 2,856
  • 1
  • 22
  • 36
0
votes
1 answer

Angularjs Obfuscation causing issue on Crash reporting

When running ng serve -prod, the run is obfuscated to reduce the size and hide the code. This is causing an issue in crash reporting tools (tried sentry and raygun) since the crash report is obfuscated. Is there any solution to get a clear crash…
Tarek A.
  • 218
  • 2
  • 12
0
votes
1 answer

How can I call code at run-time from a Rail initializer?

I am using Raygun for error tracking in an app which uses a sharded database. Separate clients store their data on their own shard of the DB server. rails c 1> MultiSite.get_shard #=> master 2> Post.count #=> 0 3> MultiSite.set_shard…
FelixFortis
  • 684
  • 6
  • 16
0
votes
2 answers

Raygun in angular-cli 1.2.6

I am Working on angular 4 project using angular-cli 1.2.6, So here I want to use Raygun in my application for error logging. I could not able to find any documentation on installing for angular-cli projects as angular 4 does not a…
Aakash N
  • 61
  • 1
  • 7