Lifetime
register_shutdown_event(app)
Actions to run on application's shutdown.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app |
FastAPI
|
fastAPI application. |
required |
Returns:
Type | Description |
---|---|
Callable[[], Awaitable[None]]
|
function that actually performs actions. |
Source code in hestia/web/lifetime.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
|
register_startup_event(app)
Actions to run on application startup.
This function uses fastAPI app to store data in the state, such as db_engine.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app |
FastAPI
|
the fastAPI application. |
required |
Returns:
Type | Description |
---|---|
Callable[[], Awaitable[None]]
|
function that actually performs actions. |
Source code in hestia/web/lifetime.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
|
setup_opentelemetry(app)
Enables opentelemetry instrumentation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app |
FastAPI
|
current application. |
required |
Source code in hestia/web/lifetime.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|
setup_prometheus(app)
Enables prometheus integration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app |
FastAPI
|
current application. |
required |
Source code in hestia/web/lifetime.py
119 120 121 122 123 124 125 126 127 |
|
stop_opentelemetry(app)
Disables opentelemetry instrumentation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
app |
FastAPI
|
current application. |
required |
Source code in hestia/web/lifetime.py
104 105 106 107 108 109 110 111 112 113 114 115 116 |
|