Skip to content

Commit 950b1eb

Browse files
authored
Opbeat becomes Elastic APM (elastic#182)
Renamed all references to Elastic APM counterparts
1 parent 7032932 commit 950b1eb

File tree

153 files changed

+1045
-2522
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+1045
-2522
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pip-log.txt
1515
/docs/html
1616
/docs/doctrees
1717
/example_project/*.db
18-
opbeat/utils/wrapt/_wrappers.so
18+
elasticapm/utils/wrapt/_wrappers.so
1919
coverage
2020
.tox
2121
.eggs

AUTHORS

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
http://github.com/dcramer/raven/contributors
2-
3-
and Opbeat
1+
See http://github.com/elastic/apm-agent-python/contributors

CHANGES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@
137137

138138
### 2.0.1 ###
139139
* Fixed a bug when `__name__` does not exist for `view_func` given to
140-
`OpbeatAPMMiddleware`
140+
`TracingMiddleware`
141141

142142
# 2.0 #
143143
* Async support was refactored, removed old `AsyncClient` classes
144-
* `OpbeatAPMMiddleware` was added to time requests
144+
* `TracingMiddleware` was added to time requests
145145
* `APP_ID` now configurable from environment
146146
* Lots of cleanups
147147

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test:
77
else py.test --isort; fi
88

99
coverage:
10-
coverage run runtests.py --include=opbeat/* && \
10+
coverage run runtests.py --include=elasticapm/* && \
1111
coverage html --omit=*/migrations/* -d cover
1212

1313
.PHONY: isort test coverage

README.rst

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,33 @@
1-
Opbeat for Python
2-
=================
1+
elastic-apm -- Elastic APM agent for Python
2+
===========================================
33

4-
.. image:: https://api.travis-ci.org/opbeat/opbeat_python.svg?branch=master
5-
:target: https://travis-ci.org/opbeat/opbeat_python
4+
.. image:: https://api.travis-ci.org/elastic/apm-agent-python.svg?branch=master
5+
:target: https://travis-ci.org/elastic/apm-agent-python
66
:alt: Build Status
77

8-
.. image:: https://img.shields.io/pypi/v/opbeat.svg?style=flat
9-
:target: https://pypi.python.org/pypi/opbeat/
8+
.. image:: https://img.shields.io/pypi/v/elastic-apm.svg?style=flat
9+
:target: https://pypi.python.org/pypi/elastic-apm/
1010
:alt: Latest Version
1111

12-
.. image:: https://img.shields.io/pypi/pyversions/opbeat.svg?style=flat
13-
:target: https://pypi.python.org/pypi/opbeat/
12+
.. image:: https://img.shields.io/pypi/pyversions/elastic-apm.svg?style=flat
13+
:target: https://pypi.python.org/pypi/elastic-apm/
1414
:alt: Supported Python versions
1515

1616

17-
This is the official Python module for `Opbeat <https://opbeat.com/>`_.
17+
This is the official Python module for Elastic APM.
1818

1919
It provides full out-of-the-box support for many of the popular frameworks,
20-
including Django, and Flask. Opbeat also includes drop-in support for any
20+
including Django, and Flask. Elastic APM also includes drop-in support for any
2121
WSGI-compatible web application.
2222

23-
Your application doesn't live on the web? No problem! Opbeat is easy to use in
23+
Your application doesn't live on the web? No problem! Elastic APM is easy to use in
2424
any Python application.
2525

2626

27-
Documentation
28-
-------------
29-
30-
* `Documentation overview <https://opbeat.com/docs/topics/python/>`_
31-
* `Get started with Django <https://opbeat.com/docs/articles/get-started-with-django/>`_
32-
* `Get started with Flask <https://opbeat.com/docs/articles/get-started-with-flask/>`_
33-
* `Get started with a custom Python stack <https://opbeat.com/docs/articles/get-started-with-a-custom-python-stack/>`_
34-
35-
3627
License
3728
-------
3829

3930
BSD-3-Clause
4031

4132

42-
Made with ♥️ and ☕️ by Opbeat and our community.
33+
Made with ♥️ and ☕️ by Elastic, Inc. and our community.

conftest.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ def pytest_configure(config):
3737
DATABASES={
3838
'default': {
3939
'ENGINE': 'django.db.backends.sqlite3',
40-
'NAME': 'opbeat_tests.db',
41-
'TEST_NAME': 'opbeat_tests.db',
40+
'NAME': 'elasticapm_tests.db',
41+
'TEST_NAME': 'elasticapm_tests.db',
4242
'TEST': {
43-
'NAME': 'opbeat_tests.db',
43+
'NAME': 'elasticapm_tests.db',
4444
}
4545
},
4646
},
47-
TEST_DATABASE_NAME='opbeat_tests.db',
47+
TEST_DATABASE_NAME='elasticapm_tests.db',
4848
INSTALLED_APPS=[
4949
'django.contrib.auth',
5050
'django.contrib.admin',
@@ -54,7 +54,7 @@ def pytest_configure(config):
5454

5555
'django.contrib.contenttypes',
5656

57-
'opbeat.contrib.django',
57+
'elasticapm.contrib.django',
5858
'tests.contrib.django.testapp',
5959
] + djcelery,
6060
ROOT_URLCONF='tests.contrib.django.testapp.urls',

docs/Makefile

Lines changed: 0 additions & 130 deletions
This file was deleted.

0 commit comments

Comments
 (0)