-
-
Notifications
You must be signed in to change notification settings - Fork 277
Add integration for logging package #631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 12 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
e35f77f
Logging Integration
ueman a3852fb
CI
ueman 5e6f17a
Readme
ueman 4e8e47c
fix path
ueman dc02e35
only build logging when necessary
ueman 5ddae9d
Update sentry_logging/pubspec.yaml
ueman 74b7cce
Update sentry_logging/pubspec.yaml
ueman 020462a
always build
ueman 326fe43
pr feedback
ueman 4ebcde8
don't build dart/flutter if just logging is changed
ueman 96894a7
fix ci
ueman 820ec00
fix coverage
ueman 8d83f84
Update sentry_logging/CHANGELOG.md
ueman 66c974a
Update sentry_logging/lib/src/version.dart
ueman a229695
use async await
ueman 72b5d2c
remove to string
ueman dd2f5fa
Rename folder to logging + symlink changelog
ueman c905ab2
Merge remote-tracking branch 'origin/main' into feat/logging
ueman 04c4fcc
PR Feedback
ueman 0d4805b
return some value
ueman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ on: | |
| branches: | ||
| - main | ||
| pull_request: | ||
| paths-ignore: | ||
| - 'sentry_logging/**' | ||
| defaults: | ||
| run: | ||
| shell: bash | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ on: | |
| branches: | ||
| - main | ||
| pull_request: | ||
| paths-ignore: | ||
| - 'sentry_logging/**' | ||
| defaults: | ||
| run: | ||
| shell: bash | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| name: logging | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ## 1.0.0 | ||
ueman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| - Initial version. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | [](https://github.com/getsentry/sentry-dart/actions?query=workflow%3Alogging) | [](https://pub.dev/packages/sentry_logging) | [](https://pub.dev/packages/sentry_logging/score) | [](https://pub.dev/packages/sentry_logging/score) | [](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 | ||
|
|
||
| * [](https://docs.sentry.io/platforms/dart/) | ||
| * [](https://forum.sentry.io/c/sdks) | ||
| * [](https://discord.gg/Ww9hbqr) | ||
| * [](https://stackoverflow.com/questions/tagged/sentry) | ||
| * [](https://twitter.com/intent/follow?screen_name=getsentry) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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, | ||
| ); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| library sentry_logging; | ||
|
|
||
| export 'src/logging_integration.dart'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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(), | ||
ueman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| '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]; | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| import 'dart:async'; | ||
|
|
||
| import 'package:logging/logging.dart'; | ||
| import 'package:sentry/sentry.dart'; | ||
| import 'version.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 | ||
ueman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| /// messages with errors as an [SentryEvent] instead of an [Breadcrumb]. | ||
| /// Setting [logExceptionAsEvent] to false captures everything as | ||
| /// [Breadcrumb]s. | ||
| LoggingIntegration({ | ||
| Level minBreadcrumbLevel = Level.INFO, | ||
| Level minEventLevel = Level.SEVERE, | ||
| }) : _minBreadcrumbLevel = minBreadcrumbLevel, | ||
| _minEventLevel = minEventLevel; | ||
|
|
||
| final Level _minBreadcrumbLevel; | ||
| final Level _minEventLevel; | ||
| late StreamSubscription<LogRecord> _subscription; | ||
| late Hub _hub; | ||
|
|
||
| @override | ||
| FutureOr<void> call(Hub hub, SentryOptions options) { | ||
| _hub = hub; | ||
| _setSdkVersion(options); | ||
| _subscription = Logger.root.onRecord.listen( | ||
| _onLog, | ||
| onError: (Object error, StackTrace stackTrace) { | ||
| _hub.captureException(error, stackTrace: stackTrace); | ||
ueman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| }, | ||
| ); | ||
| options.sdk.addIntegration('LoggingIntegration'); | ||
ueman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| @override | ||
| Future<void> close() async { | ||
| await super.close(); | ||
| await _subscription.cancel(); | ||
| } | ||
|
|
||
| void _setSdkVersion(SentryOptions options) { | ||
| final sdk = SdkVersion( | ||
| name: sdkName, | ||
| version: sdkVersion, | ||
| integrations: options.sdk.integrations, | ||
| packages: options.sdk.packages, | ||
| ); | ||
| sdk.addPackage('pub:sentry_logging', sdkVersion); | ||
| options.sdk = sdk; | ||
marandaneto marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| bool _isLoggable(Level logLevel, Level minLevel) { | ||
| return logLevel > minLevel; | ||
| } | ||
|
|
||
| void _onLog(LogRecord record) { | ||
| // The event must be logged first, otherwise the log would also be added | ||
| // to the breadcrumbs for itself. | ||
| if (_isLoggable(record.level, _minEventLevel)) { | ||
| _hub.captureEvent( | ||
| record.toEvent(), | ||
| stackTrace: record.stackTrace, | ||
| ); | ||
| } | ||
|
|
||
| if (_isLoggable(record.level, _minBreadcrumbLevel)) { | ||
| _hub.addBreadcrumb(record.toBreadcrumb()); | ||
ueman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| /// The SDK version reported to Sentry.io in the submitted events. | ||
| const String sdkVersion = '6.2.0'; | ||
|
|
||
| /// The default SDK name reported to Sentry.io in the submitted events. | ||
| const String sdkName = 'sentry.dart.sentry_logging'; | ||
ueman marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.