Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
galaxy.tools.error_reports.plugins package¶
This module describes the abstract interface for InstrumentPlugin
.
These are responsible for collecting and formatting a coherent set of metrics.
-
class
galaxy.tools.error_reports.plugins.
ErrorPlugin
[source]¶ Bases:
object
Describes how to send bug reports to various locations.
-
plugin_type
¶ Short string providing labelling this plugin
-
Submodules¶
galaxy.tools.error_reports.plugins.biostars module¶
The module describes the biostars
error plugin.
-
class
galaxy.tools.error_reports.plugins.biostars.
BiostarsPlugin
(**kwargs)[source]¶ Bases:
galaxy.tools.error_reports.plugins.ErrorPlugin
Send error report as an issue on Biostars
-
plugin_type
= 'biostars'¶
-
galaxy.tools.error_reports.plugins.email module¶
The module describes the email
error plugin.
galaxy.tools.error_reports.plugins.github module¶
The module describes the github
error plugin plugin.
-
class
galaxy.tools.error_reports.plugins.github.
GithubPlugin
(**kwargs)[source]¶ Bases:
galaxy.tools.error_reports.plugins.ErrorPlugin
Send error report to Github.
-
plugin_type
= 'github'¶
-
galaxy.tools.error_reports.plugins.influxdb module¶
The module describes the influxdb
error plugin plugin.
-
class
galaxy.tools.error_reports.plugins.influxdb.
InfluxDBPlugin
(**kwargs)[source]¶ Bases:
galaxy.tools.error_reports.plugins.ErrorPlugin
Send error report to InfluxDB
-
plugin_type
= 'influxdb'¶
-
galaxy.tools.error_reports.plugins.json module¶
The module describes the json
error plugin.
-
class
galaxy.tools.error_reports.plugins.json.
JsonPlugin
(**kwargs)[source]¶ Bases:
galaxy.tools.error_reports.plugins.ErrorPlugin
Write error report to a JSON file.
-
plugin_type
= 'json'¶
-
galaxy.tools.error_reports.plugins.sentry module¶
The module describes the sentry
error plugin plugin.
-
class
galaxy.tools.error_reports.plugins.sentry.
SentryPlugin
(**kwargs)[source]¶ Bases:
galaxy.tools.error_reports.plugins.ErrorPlugin
Send error report to Sentry.
-
plugin_type
= 'sentry'¶
-