hawat.blueprints.dbstatus package¶
This pluggable module provides access to database status information. The following information is provided:
general statistics of event database:
general statistics of events table
estimated number of records
table size, index size, tablespace size and total size
oldest and youngest record timestamp, record timespan
general statistics of event_thresholds table
estimated number of records
table size, index size, tablespace size and total size
oldest and youngest record timestamp, record timespan
general statistics of thresholds table
estimated number of records
table size, index size, tablespace size and total size
oldest and youngest record timestamp, record timespan
PostgreSQL configurations
Provided endpoints¶
/dbstatus/view
Page providing read-only access various database status characteristics.
Authentication: login required Authorization:
admin
role only Methods:GET
-
class
hawat.blueprints.dbstatus.
AbstractQueryStopView
[source]¶ Bases:
hawat.base.PsycopgMixin
,hawat.view.RenderableView
Application view providing ability to stop given query.
-
authentication
= True¶
-
check_action_cancel
(form, **kwargs)[source]¶ Check the form for cancel button press and cancel the action.
-
dispatch_request
(item_id)[source]¶ Mandatory interface required by the
flask.views.View.dispatch_request()
. Will be called by the Flask framework to service the request.
Return menu entry title for the view.
Default implementation returns the return value of
hawat.view.BaseView.get_view_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Menu entry title for the view.
- Return type
str
-
classmethod
get_view_icon
()[source]¶ Return menu entry icon name for the view. Given name will be used as index to built-in icon registry.
Default implementation generates the icon name by concatenating the prefix
module-
with module name.- Returns
View icon.
- Return type
str
-
classmethod
get_view_title
(**kwargs)[source]¶ Return title for the view, that will be displayed in the
title
tag of HTMLhead
element and also as the content of page header inh2
tag.Default implementation returns the return value of
hawat.view.BaseView.get_menu_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Title for the view.
- Return type
str
-
classmethod
get_view_url
(**kwargs)[source]¶ Return view URL.
- Parameters
kwargs (dict) – Optional parameters.
- Returns
URL for the view.
- Return type
str
-
methods
: Optional[List[str]] = ['GET', 'POST']¶
-
-
class
hawat.blueprints.dbstatus.
ApiQueryStopView
[source]¶ Bases:
hawat.view.mixin.AJAXMixin
,hawat.blueprints.dbstatus.AbstractQueryStopView
Application view providing ability to stop given query.
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
classmethod
-
hawat.blueprints.dbstatus.
BLUEPRINT_NAME
= 'dbstatus'¶ Name of the blueprint as module global constant.
-
class
hawat.blueprints.dbstatus.
DashboardView
[source]¶ Bases:
hawat.view.mixin.HTMLMixin
,hawat.view.mixin.SQLAlchemyMixin
,hawat.view.SimpleView
View responsible for presenting database dashboard.
-
authentication
= True¶
-
do_before_response
(**kwargs)[source]¶ Implementation of
hawat.view.RenderableView.do_before_response()
.
Return menu entry title for the view.
Default implementation returns the return value of
hawat.view.BaseView.get_view_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Menu entry title for the view.
- Return type
str
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
classmethod
get_view_template
()[source]¶ Return Jinja2 template file that should be used for rendering the view content. This default implementation works only in case the view class was properly registered into the parent blueprint/module with
hawat.app.hawatBlueprint.register_view_class()
method.- Returns
Jinja2 template file to use to render the view.
- Return type
str
-
classmethod
get_view_title
(**kwargs)[source]¶ Return title for the view, that will be displayed in the
title
tag of HTMLhead
element and also as the content of page header inh2
tag.Default implementation returns the return value of
hawat.view.BaseView.get_menu_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Title for the view.
- Return type
str
-
-
class
hawat.blueprints.dbstatus.
DatabaseStatusBlueprint
(name, import_name, **kwargs)[source]¶ Bases:
hawat.base.HawatBlueprint
Pluggable module - database status overview (dbstatus).
-
classmethod
get_module_title
()[source]¶ Get human readable name for this blueprint/module.
- Returns
Name (short summary) of the blueprint/module.
- Return type
str
-
name
= None¶
-
classmethod
-
class
hawat.blueprints.dbstatus.
MyQueriesView
[source]¶ Bases:
hawat.view.mixin.HTMLMixin
,hawat.base.PsycopgMixin
,hawat.view.SimpleView
Application view providing access status information of given single query.
-
authentication
= True¶
-
do_before_response
(**kwargs)[source]¶ This method will be called just before generating the response. By providing some meaningfull implementation you can use it for some simple item and response context mangling tasks.
- Parameters
kwargs – Custom additional arguments.
Return menu entry title for the view.
Default implementation returns the return value of
hawat.view.BaseView.get_view_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Menu entry title for the view.
- Return type
str
-
classmethod
get_view_icon
()[source]¶ Return menu entry icon name for the view. Given name will be used as index to built-in icon registry.
Default implementation generates the icon name by concatenating the prefix
module-
with module name.- Returns
View icon.
- Return type
str
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
classmethod
get_view_title
(**kwargs)[source]¶ Return title for the view, that will be displayed in the
title
tag of HTMLhead
element and also as the content of page header inh2
tag.Default implementation returns the return value of
hawat.view.BaseView.get_menu_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Title for the view.
- Return type
str
-
-
class
hawat.blueprints.dbstatus.
QueryStatusView
[source]¶ Bases:
hawat.view.mixin.AJAXMixin
,hawat.base.PsycopgMixin
,hawat.view.RenderableView
Application view providing access status information of given single query.
-
authentication
= True¶
-
dispatch_request
(item_id)[source]¶ Mandatory interface required by the
flask.views.View.dispatch_request()
. Will be called by the Flask framework to service the request.
-
do_before_response
(**kwargs)[source]¶ This method will be called just before generating the response. By providing some meaningfull implementation you can use it for some simple item and response context mangling tasks.
- Parameters
kwargs – Custom additional arguments.
Return menu entry title for the view.
Default implementation returns the return value of
hawat.view.BaseView.get_view_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Menu entry title for the view.
- Return type
str
-
classmethod
get_view_icon
()[source]¶ Return menu entry icon name for the view. Given name will be used as index to built-in icon registry.
Default implementation generates the icon name by concatenating the prefix
module-
with module name.- Returns
View icon.
- Return type
str
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
classmethod
get_view_title
(**kwargs)[source]¶ Return title for the view, that will be displayed in the
title
tag of HTMLhead
element and also as the content of page header inh2
tag.Default implementation returns the return value of
hawat.view.BaseView.get_menu_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Title for the view.
- Return type
str
-
-
class
hawat.blueprints.dbstatus.
QueryStopView
[source]¶ Bases:
hawat.view.mixin.HTMLMixin
,hawat.blueprints.dbstatus.AbstractQueryStopView
Application view providing ability to stop given query.
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
classmethod
get_view_template
()[source]¶ Return Jinja2 template file that should be used for rendering the view content. This default implementation works only in case the view class was properly registered into the parent blueprint/module with
hawat.app.hawatBlueprint.register_view_class()
method.- Returns
Jinja2 template file to use to render the view.
- Return type
str
-
classmethod
-
class
hawat.blueprints.dbstatus.
ViewView
[source]¶ Bases:
hawat.view.mixin.HTMLMixin
,hawat.base.PsycopgMixin
,hawat.view.SimpleView
Application view providing access event database status information.
-
authentication
= True¶
-
do_before_response
(**kwargs)[source]¶ This method will be called just before generating the response. By providing some meaningfull implementation you can use it for some simple item and response context mangling tasks.
- Parameters
kwargs – Custom additional arguments.
Return menu entry title for the view.
Default implementation returns the return value of
hawat.view.BaseView.get_view_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Menu entry title for the view.
- Return type
str
-
classmethod
get_view_icon
()[source]¶ Return menu entry icon name for the view. Given name will be used as index to built-in icon registry.
Default implementation generates the icon name by concatenating the prefix
module-
with module name.- Returns
View icon.
- Return type
str
-
classmethod
get_view_name
()[source]¶ Return unique name for the view. Name must be unique in the namespace of parent blueprint/module and should contain only characters
[a-z0-9]
. It will be used for generating endpoint name for the view.This method does not have any default implementation and must be overridden by a subclass.
- Returns
Name for the view.
- Return type
str
-
classmethod
get_view_title
(**kwargs)[source]¶ Return title for the view, that will be displayed in the
title
tag of HTMLhead
element and also as the content of page header inh2
tag.Default implementation returns the return value of
hawat.view.BaseView.get_menu_title()
method by default.- Parameters
kwargs (dict) – Optional parameters.
- Returns
Title for the view.
- Return type
str
-