Exceptionless.JavaScript

Exceptionless JavaScript client
授权协议 Apache-2.0 License
开发语言 JavaScript
所属分类 程序开发、 日志工具(Logging)
软件类型 开源软件
地区 不详
投 递 者 程正阳
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Exceptionless.JavaScript

Build statusDiscordNPM versionDonate

The definition of the word exceptionless is: to be without exception. Exceptionless provides real-time error reporting for your JavaScript applications in the browser or in Node.js. It organizes the gathered information into simple actionable data that will help your app become exceptionless!

Browser

You can install the npm package via npm install @exceptionless/browser --saveor via cdn `https://unpkg.com/@exceptionless/browser.Next, you just need to call startup during your apps startup to automaticallycapture unhandled errors.

import { Exceptionless } from "https://unpkg.com/@exceptionless/browser";

await Exceptionless.startup((c) => {
  c.apiKey = "API_KEY_HERE";
  c.setUserIdentity("12345678", "Blake");

  // set some default data
   c.defaultData["mydata"] = {
    myGreeting: "Hello World"
  };

  c.defaultTags.push("Example", "JavaScript", "Browser");
});

try {
  throw new Error("test");
} catch (error) {
  await Exceptionless.submitException(error);
}

Node

You can install the npm package via npm install @exceptionless/node --save.Next, you just need to call startup during your apps startup to automaticallycapture unhandled errors.

import { Exceptionless } from "@exceptionless/node";

await Exceptionless.startup((c) => {
  c.apiKey = "API_KEY_HERE";
  c.setUserIdentity("12345678", "Blake");

  // set some default data
  c.defaultData["mydata"] = {
    myGreeting: "Hello World"
  };

  c.defaultTags.push("Example", "JavaScript", "Node");
});

try {
  throw new Error("test");
} catch (error) {
  await Exceptionless.submitException(error);
}

Using Exceptionless

Installation

You can install Exceptionless either in your browser application using a scripttag, or you can use the Node Package Manager (npm) to install the package.

Browser application

Use one of the following methods to install Exceptionless into your browser application:

CDN

Add the following script tag at the very beginning of your page:

<script type="module">
import { Exceptionless } from "https://unpkg.com/@exceptionless/browser";

await Exceptionless.startup((c) => {
  c.apiKey = "API_KEY_HERE";
});
</script>
npm
  1. Install the package by running npm install @exceptionless/browser --save.
  2. Import Exceptionless and call startup during app startup.
import { Exceptionless } from "@exceptionless/browser";

await Exceptionless.startup((c) => {
  c.apiKey = "API_KEY_HERE";
});

Node.js

Use this method to install Exceptionless into your Node application:

  1. Install the package by running npm install @exceptionless/node --save.
  2. Import the Exceptionless module in your application:
import { Exceptionless } from "@exceptionless/node";

await Exceptionless.startup((c) => {
  c.apiKey = "API_KEY_HERE";
});

Configuring the client

In order to use Exceptionless, the apiKey setting has to be configured first.You can configure the ExceptionlessClient class by callingawait Exceptionless.startup("API_KEY_HERE");. If you want to configureadditional client settings you'll want to call the startup overload that takesa callback as shown below:

await Exceptionless.startup((c) => {
  c.apiKey = "API_KEY_HERE";
});

Please see the docs formore information on configuring the client.

Submitting Events and Errors

Once configured, Exceptionless will automatically submit any unhandled exceptionsthat happen in your application to the Exceptionless server. The followingsections will show you how to manually submit different event types as well ascustomize the data that is sent:

Submitting Events

You may also want to submit log messages, feature usage data or other kinds of events. You can do this very easily with the fluent API:

import { Exceptionless } from "@exceptionless/browser";

await Exceptionless.submitLog("Logging made easy");

// You can also specify the log source and log level.
// We recommend specifying one of the following log levels: Trace, Debug, Info, Warn, Error
await Exceptionless.submitLog("app.logger", "This is so easy", "Info");
await Exceptionless.createLog("app.logger", "This is so easy", "Info").addTags("Exceptionless").submit();

// Submit feature usages
await Exceptionless.submitFeatureUsage("MyFeature");
await Exceptionless.createFeatureUsage("MyFeature").addTags("Exceptionless").submit();

// Submit a 404
await Exceptionless.submitNotFound("/somepage");
await Exceptionless.createNotFound("/somepage").addTags("Exceptionless").submit();

// Submit a custom event type
await Exceptionless.submitEvent({ message = "Low Fuel", type = "racecar", source = "Fuel System" });

Manually submitting Errors

In addition to automatically sending all unhandled exceptions, you may want tomanually send exceptions to the service. You can do so by using code like this:

import { Exceptionless } from "@exceptionless/node";

await Exceptionless.startup("API_KEY_HERE");

try {
  throw new Error("test");
} catch (error) {
  await Exceptionless.submitException(error);
}

Sending Additional Information

You can easily include additional information in your error reports using the fluent event builder API.

import { Exceptionless } from "@exceptionless/node";
await Exceptionless.startup("API_KEY_HERE");

try {
  throw new Error("Unable to create order from quote.");
} catch (error) {
  await Exceptionless.createException(error)
    // Set the reference id of the event so we can search for it later (reference:id).
    .setReferenceId("random guid")
    // Add the order object (the ability to exclude specific fields will be coming in a future version).
    .setProperty("Order", order)
    // Set the quote number.
    .setProperty("Quote", 123)
    // Add an order tag.
    .addTags("Order")
    // Mark critical.
    .markAsCritical()
    // Set the coordinates of the end user.
    .setGeo(43.595089, -88.444602)
    // Set the user id that is in our system and provide a friendly name.
    .setUserIdentity(user.Id, user.FullName)
    // Submit the event.
    .submit();
}

Self hosted options

The Exceptionless client can also be configured to send data to your self hostedinstance. This is configured by setting the serverUrl on the defaultExceptionlessClient when calling startup:

await Exceptionless.startup((c) => {
  c.apiKey = "API_KEY_HERE";
  c.serverUrl = "http://localhost:5000";
});

General Data Protection Regulation

By default the Exceptionless Client will report all available metadata including potential PII data.You can fine tune the collection of information via Data Exclusions or turning off collection completely.

Please visit the docsfor detailed information on how to configure the client to meet your requirements.

Support

If you need help, please contact us via in-app support,open an issueor join our chat on Discord. We’re always here tohelp if you have any questions!

Contributing

If you find a bug or want to contribute a feature, feel free to create a pull request.

  1. Clone this repository:

    git clone https://github.com/exceptionless/Exceptionless.JavaScript.git
  2. Install Node.js. Node is used for building and testing purposes.

  3. Install the development dependencies using npm.

    npm install
  4. Build the project by running the following gulp command.

    npm run build
  5. Test the project by running the following gulp command.

    npm run test

Thanks

Thanks to all the people who have contributed!

contributors

  • 背景 “Exceptionless”一词的定义是:无例外。Exceptionless可为您的JavaScript,Node,.NET Core,ASP.NET,Web API,WebForms,WPF,控制台和MVC应用程序提供实时错误报告。它将收集到的信息组织成简单的可操作数据,这些数据将帮助您的应用程序变得异常异常! Exceptionless专注于实时可配置性,这使其与其他错误监视服务区分开

  • 背景 “Exceptionless”一词的定义是:无例外。Exceptionless可为您的JavaScript,Node,.NET Core,ASP.NET,Web API,WebForms,WPF,控制台和MVC应用程序提供实时错误报告。它将收集到的信息组织成简单的可操作数据,这些数据将帮助您的应用程序变得异常异常! Exceptionless专注于实时可配置性,这使其与其他错误监视服务区分开

  • Exceptionless 是一个开源的实时的日志收集框架,它可以应用在基于 ASP.NET,ASP.NET Core,Web Api,Web Forms,WPF,Console,MVC 等技术栈的应用程序中,并且提供了Rest接口可以应用在 Javascript,Node.js 中。它将日志收集变得简单易用并且不需要了解太多的相关技术细节及配置。 在以前,我们做日志收集大多使用 Log4net,

相关阅读

相关文章

相关问答

相关文档