{ "info": { "author": "Vadym Kalsin", "author_email": "neformat@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Internet :: WWW/HTTP", "Topic :: System :: Monitoring" ], "description": ".. image:: https://pypip.in/download/zbx-dashboard/badge.svg\r\n :target: https://pypi.python.org/pypi/zbx-dashboard/\r\n :alt: Downloads\r\n.. image:: https://pypip.in/version/zbx-dashboard/badge.svg\r\n :target: https://pypi.python.org/pypi/zbx-dashboard/\r\n :alt: Latest Version\r\n.. image:: https://travis-ci.org/banzayats/zbx-dashboard.svg?branch=master\r\n :target: https://travis-ci.org/banzayats/zbx-dashboard\r\n :alt: Travis CI\r\n\r\n===============================================\r\nzbx_dashboard\r\n===============================================\r\n`zbx_dashboard` is a simple Django applicattion that provides an alternative to the Zabbix screens.\r\nIt allows users who are not registered in Zabbix being able to view the graphs and (in the future) more data from Zabbix.\r\n\r\nPrerequisites\r\n===============================================\r\n- Django 1.5.*, 1.6.*, 1.7.*\r\n- Python 2.6.8+, 2.7.*\r\n\r\nMain features\r\n===============================================\r\n- Group graphs in separate dashboards\r\n- Rearrange graphs on the dashboard\r\n- Each dashboard and the graph can be provided a brief description\r\n- Dashboards may belong to different groups of users\r\n\r\nInstallation\r\n===============================================\r\n1. Install latest stable version from PyPI:\r\n\r\n.. code-block:: none\r\n\r\n $ pip install zbx-dashboard\r\n\r\nOr latest stable version from GitHub:\r\n\r\n.. code-block:: none\r\n\r\n $ pip install -e git+https://github.com/banzayats/zbx-dashboard@stable#egg=zbx-dashboard\r\n\r\n2. Edit your projects' Django settings:\r\n\r\n.. code-block:: python\r\n\r\n INSTALLED_APPS = (\r\n 'admin_tools',\r\n 'admin_tools.theming',\r\n 'admin_tools.menu',\r\n 'admin_tools.dashboard',\r\n 'tinymce',\r\n 'widget_tweaks',\r\n 'django.contrib.admin',\r\n 'django.contrib.auth',\r\n 'django.contrib.contenttypes',\r\n 'django.contrib.sessions',\r\n 'django.contrib.messages',\r\n 'django.contrib.staticfiles',\r\n 'zbx_dashboard',\r\n )\r\n\r\n STATIC_ROOT = os.path.join(BASE_DIR, 'static')\r\n\r\n TEMPLATE_CONTEXT_PROCESSORS = (\r\n 'django.contrib.auth.context_processors.auth',\r\n 'django.core.context_processors.debug',\r\n 'django.core.context_processors.i18n',\r\n 'django.core.context_processors.request',\r\n 'django.core.context_processors.static',\r\n 'django.contrib.messages.context_processors.messages',\r\n )\r\n\r\n LOGIN_REDIRECT_URL = '/boards'\r\n\r\n # Set up your Zabbix server credentials\r\n ZABBIX_URL = 'https://zabbix.org/zabbix/'\r\n ZABBIX_USER = 'guest'\r\n ZABBIX_PASS = ''\r\n\r\n # TinyMCE\r\n TINYMCE_DEFAULT_CONFIG = {\r\n 'mode': 'exact',\r\n 'theme': \"advanced\",\r\n 'relative_urls': False,\r\n 'width': 400,\r\n 'height': 200,\r\n 'plugins': 'inlinepopups,preview,media,contextmenu,paste,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras',\r\n 'theme_advanced_buttons1': 'fullscreen,|,bold,italic,underline,strikethrough,|,sub,sup,|,bullist,numlist,|,outdent,indent,|,formatselect,removeformat,|,preview,code',\r\n 'theme_simple_toolbar_location': 'top',\r\n 'theme_advanced_toolbar_align': 'left',\r\n }\r\n\r\n LOCALE_PATHS = (\r\n os.path.join(BASE_DIR, 'locale'),\r\n )\r\n\r\n3. Add to urls.py:\r\n\r\n.. code-block:: python\r\n\r\n from django.contrib.auth.views import login, logout\r\n\r\n urlpatterns = patterns('',\r\n # ...\r\n url(r'^admin_tools/', include('admin_tools.urls')),\r\n url(r'^boards/', include('zbx_dashboard.urls', namespace=\"boards\")),\r\n url(r'^accounts/login/$', login, name='login'),\r\n url(r'^accounts/logout/$', logout, name='logout'),\r\n url(r'^tinymce/', include('tinymce.urls')),\r\n )\r\n\r\n4. Run:\r\n\r\n.. code-block:: none\r\n\r\n $ python manage.py syncdb\r\n\r\nThis creates a few tables in your database that are necessary for operation.\r\n\r\n5. Make ``static`` directory in your projects' root directory and run:\r\n\r\n.. code-block:: none\r\n\r\n $ python manage.py collectstatic\r\n\r\n6. Test the application. Run the development server:\r\n\r\n.. code-block:: none\r\n\r\n $ python manage.py runserver 0.0.0.0:5000\r\n\r\nDemo\r\n===============================================\r\nDemo site: http://boyard.pp.ua\r\n\r\nlogin: admin, password: admin", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/banzayats/zbx-dashboard/", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "zbx-dashboard", "package_url": "https://pypi.org/project/zbx-dashboard/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/zbx-dashboard/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/banzayats/zbx-dashboard/" }, "release_url": "https://pypi.org/project/zbx-dashboard/0.1.2/", "requires_dist": null, "requires_python": null, "summary": "Simple Django applicattion that provides an alternative to the Zabbix screens.", "version": "0.1.2" }, "last_serial": 1315602, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "ffbc6b1963edce2dbabb68722b1b5dab", "sha256": "8196e62d251486aa5b5114db20d2f87a07c3c650ffb67eaa943e5cf17c56026d" }, "downloads": -1, "filename": "zbx-dashboard-0.1.0.tar.gz", "has_sig": false, "md5_digest": "ffbc6b1963edce2dbabb68722b1b5dab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 412231, "upload_time": "2014-10-09T10:04:06", "url": "https://files.pythonhosted.org/packages/78/ef/7988ad6e6f1a44a3e96334591de8a45207e6cfd5354adae347028b446c98/zbx-dashboard-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "78470c52e34a7888592a4f1b368adb76", "sha256": "0fa39004057e0b5a692dcfda5b5405739fa08473dc3de9a4d1dcd0e9b928afe2" }, "downloads": -1, "filename": "zbx-dashboard-0.1.1.tar.gz", "has_sig": false, "md5_digest": "78470c52e34a7888592a4f1b368adb76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 412476, "upload_time": "2014-10-31T12:13:14", "url": "https://files.pythonhosted.org/packages/8b/15/836dfad5ea95fcce2fd2f8e7edca53d5f2ff34e96eea06c10b904abf8f98/zbx-dashboard-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "a20f39b85fb9b1e04988d3b702069334", "sha256": "14619029681f59b11efc10e7c9147fdd56e71659f2581bbe073d8eee43fa51b4" }, "downloads": -1, "filename": "zbx-dashboard-0.1.2.tar.gz", "has_sig": false, "md5_digest": "a20f39b85fb9b1e04988d3b702069334", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 417762, "upload_time": "2014-11-14T12:03:09", "url": "https://files.pythonhosted.org/packages/7d/b1/4e765ccada82e73a848b6b4906f17a6de1ebdae37185a70f628e9e6233a4/zbx-dashboard-0.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a20f39b85fb9b1e04988d3b702069334", "sha256": "14619029681f59b11efc10e7c9147fdd56e71659f2581bbe073d8eee43fa51b4" }, "downloads": -1, "filename": "zbx-dashboard-0.1.2.tar.gz", "has_sig": false, "md5_digest": "a20f39b85fb9b1e04988d3b702069334", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 417762, "upload_time": "2014-11-14T12:03:09", "url": "https://files.pythonhosted.org/packages/7d/b1/4e765ccada82e73a848b6b4906f17a6de1ebdae37185a70f628e9e6233a4/zbx-dashboard-0.1.2.tar.gz" } ] }