You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 17, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.rst
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ OpenCensus for Python - A stats collection and distributed tracing framework
23
23
Installation & basic usage
24
24
--------------------------
25
25
26
-
1. Install the opencensus-trace package using `pip`_ or `pipenv`_:
26
+
1. Install the opencensus package using `pip`_ or `pipenv`_:
27
27
28
28
::
29
29
@@ -41,14 +41,16 @@ Installation & basic usage
41
41
.. _pip: https://pip.pypa.io
42
42
.. _pipenv: https://docs.pipenv.org/
43
43
44
-
3. If you want to use the unreleased packages (like stats and tags), you need to build the package from source using the below commands: (The stats and tags packages are expected to be released in 0.1.6)
44
+
3. Initialize a view_manager and a stats_recorder for your application:
45
45
46
-
::
46
+
.. code:: python
47
+
48
+
from opencensus.stats import stats as stats_module
0 commit comments