File tree 3 files changed +11
-7
lines changed
3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 2
2
<img src =" https://disznc.s3.amazonaws.com/Python-1-2017-06-29-at-22.34.00.png " />
3
3
</div >
4
4
5
- # Instana
5
+ # Stan
6
6
7
- The Instana package provides Python metrics and traces (request, queue & cross-host) for [ Instana] ( https://www.instana.com/ ) .
7
+ The stan package provides Python metrics and traces (request, queue & cross-host) for [ Instana] ( https://www.instana.com/ ) .
8
8
9
9
## Note
10
10
@@ -14,11 +14,11 @@ Any and all feedback is welcome. Happy Python visibility.
14
14
15
15
## Installation
16
16
17
- $ pip install instana
17
+ $ pip install stan
18
18
19
19
## Usage
20
20
21
- The instana package is a zero configuration tool that will automatically collect key metrics from your Python processes. Just install and go.
21
+ The stan package is a zero configuration tool that will automatically collect key metrics from your Python processes. Just install and go.
22
22
23
23
## Tracing
24
24
Original file line number Diff line number Diff line change 1
1
[nosetests]
2
2
verbose =1
3
3
nocapture =1
4
+
5
+ [metadata]
6
+ description-file = README.md
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
- setup (name = 'instana ' ,
3
+ setup (name = 'stan ' ,
4
4
version = '0.0.1' ,
5
5
url = 'https://github.com/instana/python-sensor' ,
6
6
license = 'MIT' ,
7
7
author = 'Instana Inc.' ,
8
- author_email = 'pavlo.baron @instana.com' ,
8
+ author_email = 'peter.lombardo @instana.com' ,
9
9
description = 'Metrics sensor and trace collector for Instana' ,
10
10
packages = find_packages (exclude = ['tests' , 'examples' ]),
11
11
long_description = open ('README.md' ).read (),
15
15
'opentracing>=1.2.1,<1.3' ,
16
16
'basictracer>=2.2.0' ,
17
17
'psutil>=5.1.3' ],
18
- test_suite = 'nose.collector' )
18
+ test_suite = 'nose.collector' ,
19
+ keywords = ['performance' , 'opentracing' , 'metrics' , 'monitoring' ])
You can’t perform that action at this time.
0 commit comments