Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Elastic APM #58

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions netbox_paas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class NetBoxPaas(PluginConfig):
base_url = "paas"
min_version = "3.7.0"
max_version = "3.7.99"
django_apps = ["elasticapm.contrib.django"]

def ready(self):
super().ready()
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="netbox-paas",
version="0.3.4",
version="0.3.5",
description="Enhances NetBox on CloudMyDC's PaaS with advanced management and control features.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -19,7 +19,7 @@
author_email="[email protected]",
maintainer="Abhimanyu Saharan",
maintainer_email="[email protected]",
install_requires=["py-jelastic", "croniter<3.0.0", "semver<4.0.0", "requirements-parser"],
install_requires=["py-jelastic", "croniter<3.0.0", "semver<4.0.0", "requirements-parser", "elastic-apm"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
Expand Down
Loading