Skip to content

Commit

Permalink
Adding web.py example (#523)
Browse files Browse the repository at this point in the history
Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
  • Loading branch information
kamalhussain and ocelotl committed Jun 17, 2021
1 parent 7cae4d3 commit e129174
Showing 1 changed file with 30 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
"""
This library provides a WSGI middleware that can be used on any WSGI framework
(such as Django / Flask) to track requests timing through OpenTelemetry.
(such as Django / Flask / Web.py) to track requests timing through OpenTelemetry.
Usage (Flask)
-------------
Expand Down Expand Up @@ -50,6 +50,35 @@ def hello():
application = get_wsgi_application()
application = OpenTelemetryMiddleware(application)
Usage (Web.py)
--------------
.. code-block:: python
import web
from opentelemetry.instrumentation.wsgi import OpenTelemetryMiddleware
from cheroot import wsgi
urls = ('/', 'index')
class index:
def GET(self):
return "Hello, world!"
if __name__ == "__main__":
app = web.application(urls, globals())
func = app.wsgifunc()
func = OpenTelemetryMiddleware(func)
server = wsgi.WSGIServer(
("localhost", 5100), func, server_name="localhost"
)
server.start()
API
---
"""
Expand Down

0 comments on commit e129174

Please sign in to comment.