Skip to content

Commit

Permalink
Update README, bump to v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kolanos committed Aug 20, 2019
1 parent 32bf272 commit f9b2be3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ The trace plugin can trace your database requests automatically. To enable this
iopipe = IOpipe(plugins=[TracePlugin(auto_db=True)])
```

With `auto_db` enabled, you will see traces for any database requests you make within your function on your IOpipe dashboard. Currently this feature only supports [MongoDB](https:/mongodb/mongo-python-driver) and [Redis](https:/andymccurdy/redis-py), but other databases soon to come.
With `auto_db` enabled, you will see traces for any database requests you make within your function on your IOpipe dashboard. Currently this feature supports [MongoDB](https:/mongodb/mongo-python-driver), [MySQL](https:/PyMySQL), [PostgreSQL](https:/psycopg/psycopg2) and [Redis](https:/andymccurdy/redis-py).

MongoDB example:

Expand Down
2 changes: 1 addition & 1 deletion iopipe/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
PROCESS_ID = str(uuid.uuid4())
TIMESTAMP_FORMAT = "%Y-%m-%dT%H:%M:%S.%fZ"
METRIC_NAME_LIMIT = 128
VERSION = "1.9.2"
VERSION = "1.10.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

setup(
name="iopipe",
version="1.9.2",
version="1.10.0",
description="IOpipe agent for serverless Application Performance Monitoring",
long_description=README,
author="IOpipe",
Expand Down

0 comments on commit f9b2be3

Please sign in to comment.