Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 108 additions & 0 deletions .github/workflows/logging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
name: logging
on:
push:
branches:
- main
pull_request:
on:
push:
branches:
- main
paths:
- "sentry_logging/**"
- ".github/workflows/logging.yml"
pull_request:
paths:
- "sentry_logging/**"
- ".github/workflows/logging.yml"
defaults:
run:
shell: bash
jobs:
build:
name: Build ${{matrix.sdk}} on ${{matrix.os}}
runs-on: ${{ matrix.os }}
timeout-minutes: 20
defaults:
run:
working-directory: ./sentry_logging
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
sdk: [stable, beta, dev]
exclude:
# Bad state: Could not run tests with Observatory enabled. Try setting a different port with --port option.
- os: ubuntu-latest
sdk: beta
# hanging often
- os: ubuntu-latest
sdk: dev
- os: macos-latest
sdk: beta
# macos-latest is taking hours due to limited resources
- os: macos-latest
sdk: dev

steps:
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- uses: actions/checkout@v2
# coverage with 'chrome' platform hangs the build
- name: Test (VM and browser)
run: |
dart pub get
dart test -p chrome
dart test -p vm --coverage=coverage
dart pub run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.packages --report-on=lib

- uses: codecov/codecov-action@v1
if: runner.os == 'Linux'
with:
name: sentry
file: ./sentry_logging/coverage/lcov.info

- uses: VeryGoodOpenSource/[email protected]
if: runner.os == 'Linux'
with:
path: "./sentry_logging/coverage/lcov.info"
min_coverage: 90

analyze:
runs-on: ubuntu-latest
timeout-minutes: 20
defaults:
run:
working-directory: ./dart
steps:
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- uses: actions/checkout@v2
- run: |
dart pub get
dart analyze --fatal-infos
dart format --set-exit-if-changed ./

package-analysis:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- uses: axel-op/dart-package-analyzer@v3
id: analysis
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
relativePath: dart/
- name: Check scores
env:
TOTAL: ${{ steps.analysis.outputs.total }}
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
run: |
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
if (( $PERCENTAGE < 100 ))
then
echo Score too low!
exit 1
fi
10 changes: 10 additions & 0 deletions sentry_logging/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Files and directories created by pub.
.dart_tool/
.packages

# Conventional directory for build outputs.
build/

# Omit committing pubspec.lock for library packages; see
# https://dart.dev/guides/libraries/private-files#pubspeclock.
pubspec.lock
3 changes: 3 additions & 0 deletions sentry_logging/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 1.0.0

- Initial version.
49 changes: 49 additions & 0 deletions sentry_logging/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Sentry integration for `logging` package
===========

<p align="center">
<a href="https://sentry.io" target="_blank" align="center">
<img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" width="280">
</a>
<br />
</p>

| package | build | pub | likes | popularity | pub points |
| ------- | ------- | ------- | ------- | ------- | ------- |
| sentry | [![build](https://github.com/getsentry/sentry-dart/workflows/logging/badge.svg?branch=main)](https://github.com/getsentry/sentry-dart/actions?query=workflow%3Alogging) | [![pub package](https://img.shields.io/pub/v/sentry_logging.svg)](https://pub.dev/packages/sentry_logging) | [![likes](https://badges.bar/sentry_logging/likes)](https://pub.dev/packages/sentry_logging/score) | [![popularity](https://badges.bar/sentry_logging/popularity)](https://pub.dev/packages/sentry_logging/score) | [![pub points](https://badges.bar/sentry_logging/pub%20points)](https://pub.dev/packages/sentry_logging/score)

Integration for the [`logging`](https://pub.dev/packages/logging) package.

#### Usage

- Sign up for a Sentry.io account and get a DSN at http://sentry.io.

- Follow the installing instructions on [pub.dev](https://pub.dev/packages/sentry/install).

- Initialize the Sentry SDK using the DSN issued by Sentry.io and add the `LoggingIntegration`

```dart
import 'package:sentry/sentry.dart';

Future<void> main() async {
await Sentry.init(
(options) {
options.dsn = 'https://[email protected]/example';
options.addIntegration(LoggingIntegration());
},
appRunner: initApp, // Init your App.
);
}

void initApp() {
// your app code
}
```

#### Resources

* [![Documentation](https://img.shields.io/badge/documentation-sentry.io-green.svg)](https://docs.sentry.io/platforms/dart/)
* [![Forum](https://img.shields.io/badge/forum-sentry-green.svg)](https://forum.sentry.io/c/sdks)
* [![Discord](https://img.shields.io/discord/621778831602221064)](https://discord.gg/Ww9hbqr)
* [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-sentry-green.svg)](https://stackoverflow.com/questions/tagged/sentry)
* [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry)
32 changes: 32 additions & 0 deletions sentry_logging/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
include: package:lints/recommended.yaml

analyzer:
strong-mode:
implicit-casts: false
implicit-dynamic: false
language:
strict-raw-types: true
errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: error
# treat missing returns as a warning (not a hint)
missing_return: error
# allow having TODOs in the code
todo: ignore
# allow self-reference to deprecated members (we do this because otherwise we have
# to annotate every member in every test, assert, etc, when we deprecate something)
deprecated_member_use_from_same_package: warning
# ignore sentry/path on pubspec as we change it on deployment
invalid_dependency: ignore
exclude:
- example/**

linter:
rules:
- prefer_final_locals
- public_member_api_docs
- prefer_single_quotes
- prefer_relative_imports
- unnecessary_brace_in_string_interps
- implementation_imports
- require_trailing_commas
34 changes: 34 additions & 0 deletions sentry_logging/example/sentry_logging_example.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import 'package:sentry_logging/sentry_logging.dart';
import 'dart:async';
import 'package:sentry/sentry.dart';
import 'package:logging/logging.dart';

Future<void> main() async {
// ATTENTION: Change the DSN below with your own to see the events in Sentry. Get one at sentry.io
const dsn =
'https://[email protected]/5428562';

await Sentry.init(
(options) {
options.dsn = dsn;
options.addIntegration(LoggingIntegration());
},
appRunner: runApp,
);
}

Future<void> runApp() async {
final log = Logger('MyAwesomeLogger');

log.warning('a warning!');

try {
throw Exception();
} catch (error, stackTrace) {
// The log from above will be contained in this crash report.
await Sentry.captureException(
error,
stackTrace: stackTrace,
);
}
}
3 changes: 3 additions & 0 deletions sentry_logging/lib/sentry_logging.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
library sentry_logging;

export 'src/logging_integration.dart';
54 changes: 54 additions & 0 deletions sentry_logging/lib/src/extension.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
// ignore_for_file: public_member_api_docs

import 'package:logging/logging.dart';
import 'package:sentry/sentry.dart';
import 'package:sentry/sentry_io.dart';

extension LogRecordX on LogRecord {
Breadcrumb toBreadcrumb() {
return Breadcrumb(
category: 'log',
type: 'debug',
timestamp: time,
level: level.toSentryLevel(),
message: message,
data: <String, Object>{
if (object != null) 'LogRecord.object': object!.toString(),
if (error != null) 'LogRecord.error': error!.toString(),
if (stackTrace != null) 'LogRecord.stackTrace': stackTrace!.toString(),
'LogRecord.loggerName': loggerName,
'LogRecord.sequenceNumber': sequenceNumber,
},
);
}

SentryEvent toEvent() {
return SentryEvent(
logger: loggerName,
level: level.toSentryLevel(),
message: SentryMessage(message),
throwable: error,
extra: <String, Object>{
if (object != null) 'LogRecord.object': object!,
'LogRecord.sequenceNumber': sequenceNumber,
},
);
}
}

extension LogLevelX on Level {
SentryLevel? toSentryLevel() {
return <Level, SentryLevel?>{
Level.ALL: SentryLevel.debug,
Level.FINEST: SentryLevel.debug,
Level.FINER: SentryLevel.debug,
Level.FINE: SentryLevel.debug,
Level.CONFIG: SentryLevel.debug,
Level.INFO: SentryLevel.info,
Level.WARNING: SentryLevel.warning,
Level.SEVERE: SentryLevel.error,
Level.SHOUT: SentryLevel.fatal,
Level.OFF: null,
}[this];
}
}
58 changes: 58 additions & 0 deletions sentry_logging/lib/src/logging_integration.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
import 'dart:async';

import 'package:logging/logging.dart';
import 'package:sentry/sentry.dart';
import 'extension.dart';

/// An [Integration] which listens to all messages of the
/// [logging](https://pub.dev/packages/logging) package.
class LoggingIntegration extends Integration<SentryOptions> {
/// Creates the [LoggingIntegration].
///
/// Setting [logExceptionAsEvent] to true (default) captures all
/// messages with errors as an [SentryEvent] instead of an [Breadcrumb].
/// Setting [logExceptionAsEvent] to false captures everything as
/// [Breadcrumb]s.
LoggingIntegration({bool logExceptionAsEvent = true})
: _logExceptionsAsEvents = logExceptionAsEvent;

final bool _logExceptionsAsEvents;
late StreamSubscription<LogRecord> _subscription;
late Hub _hub;

@override
FutureOr<void> call(Hub hub, SentryOptions options) {
_hub = hub;
_subscription = Logger.root.onRecord.listen(
_onLog,
onError: (Object error, StackTrace stackTrace) {
_hub.captureException(error, stackTrace: stackTrace);
},
);
options.sdk.addIntegration('LoggingIntegration');
}

@override
Future<void> close() async {
await super.close();
await _subscription.cancel();
}

void _onLog(LogRecord record) {
// Everything is just logged as a breadcrumb
if (!_logExceptionsAsEvents) {
_hub.addBreadcrumb(record.toBreadcrumb());
return;
}

// If a LogRecord contains an exception, it gets reported as an SentryEvent
if (record.error == null) {
_hub.addBreadcrumb(record.toBreadcrumb());
} else {
_hub.captureEvent(
record.toEvent(),
stackTrace: record.stackTrace,
);
}
}
}
16 changes: 16 additions & 0 deletions sentry_logging/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: sentry_logging
description: An integration which adds support for recording log from the logging package.
version: 1.0.0
homepage: https://docs.sentry.io/platforms/flutter/
repository: https://github.com/getsentry/sentry-dart

environment:
sdk: '>=2.14.4 <3.0.0'

dependencies:
logging: ^1.0.0
sentry: ^6.1.0

dev_dependencies:
lints: ^1.0.0
test: ^1.16.0
Empty file.
Loading