evandroflores / SentryToolbar

This is a pet project ongoing that aims to create a MacOS toolbar to follow errors on Sentry.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SentryToolbar

Maintainability codebeat badge

This is a ongoing pet project that aims to create a MacOS toolbar to follow errors on Sentry.

Still in a very experimental phase. PRs and issues are very welcome.

If you want to give a try, you can download the app here

Edit the config file to add your Sentry token, Organization slug, Project slug... ~/Library/Containers/br.com.eof.SentryToolbar/Data/.SentryToolbar.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
   <dict>
      <key>filters</key>
      <dict>
         <key>FilterA</key>
         <dict>
            <key>environment</key>
            <string />
            <key>isActive</key>
            <true />
            <key>name</key>
            <string>FilterA</string>
            <key>organizationSlug</key>
            <string>myorg</string>
            <key>projectSlug</key>
            <string>frontend</string>
            <key>query</key>
            <string>is:unresolved</string>
            <key>statsPeriod</key>
            <string>14d</string>
         </dict>
         <key>FilterB</key>
         <dict>
            <key>environment</key>
            <string />
            <key>isActive</key>
            <true />
            <key>name</key>
            <string>FilterB</string>
            <key>organizationSlug</key>
            <string>myorg</string>
            <key>projectSlug</key>
            <string>backend</string>
            <key>query</key>
            <string>is:unresolved+package.name</string>
            <key>statsPeriod</key>
            <string>14d</string>
         </dict>
      </dict>
      <key>notifyNewCount</key>
      <true />
      <key>notifyNewIssue</key>
      <true />
      <key>showCountTrend</key>
      <true />
      <key>showEventCount</key>
      <true />
      <key>showIssueCount</key>
      <true />
      <key>token</key>
      <string>YOUR TOKEN</string>
   </dict>
</plist>

About

This is a pet project ongoing that aims to create a MacOS toolbar to follow errors on Sentry.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Swift 99.2%Language:Ruby 0.8%