nautobot-app-livedata


Namenautobot-app-livedata JSON
Version 2.4.6 PyPI version JSON
download
home_pagehttps://github.com/jifox/nautobot-app-livedata.git
SummaryProvides a live view of network data within Nautobot.
upload_time2025-07-27 08:30:50
maintainerNone
docs_urlNone
authorJosef Fuchs
requires_python<3.13,>=3.9.2
licenseApache-2.0
keywords nautobot nautobot-app nautobot-plugin
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Nautobot App Livedata

<!--
Developer Note - Remove Me!

The README will have certain links/images broken until the PR is merged into `develop`. Update the GitHub links with whichever branch you're using (main etc.) if different.

The logo of the project is a placeholder (docs/images/icon-livedata.png) - please replace it with your app icon, making sure it's at least 200x200px and has a transparent background!

To avoid extra work and temporary links, make sure that publishing docs (or merging a PR) is done at the same time as setting up the docs site on RTD, then test everything.
-->

<p align="center">
  <img src="https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/icon-livedata.png" class="logo" height="200px">
  <br>
  <!-- CI passing badge -->
  <a href="https://github.com/jifox/nautobot-app-livedata/actions"><img src="https://github.com/jifox/nautobot-app-livedata/actions/workflows/ci.yml/badge.svg?branch=main"></a>
  <!-- docs build status badge -->
  <a href="https://nautobot-app-livedata.readthedocs.io/en/latest/"><img src="https://readthedocs.org/projects/nautobot-app-livedata/badge/"></a>
  <!-- pypi version Badge -->
  <a href="https://pypi.org/project/nautobot-app-livedata/"><img src="https://img.shields.io/pypi/v/nautobot-app-livedata"></a>
  <!-- downloads batch -->
  <a href="https://pypi.org/project/nautobot-app-livedata/"><img src="https://img.shields.io/pypi/dm/nautobot-app-livedata"></a>
  <br>
  An <a href="https://networktocode.com/nautobot-apps/">App</a> for <a href="https://nautobot.com/">Nautobot</a>.
</p>

## Overview

The [Nautobot App LiveData](https://github.com/jifox/nautobot-app-livedata/) is providing real-time data from network devices that are supported by [Netmiko](https://github.com/ktbyers/netmiko).

At the moment, the app is supporting only interface specific data. The data is collected from the devices via platform specific show commands and will be presented in the interface's 'Life Data' tab.

This app addresses the need for dynamic and up-to-date network information, allowing network administrators and engineers to make informed decisions based on the latest data. 

### Screenshots

- Live Data Interface Output for interfaces

  ![Livedata output screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-app-output.png)

- Live Data Device Output for devices

  ![Livedata output screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-device-output.png)

- Configure the show commands to be executed on Platform level:

  ![ Platform Screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-platform-detail.png)

- Job to clean up old data:

  ![ Cleanup Job Results Screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-app-cleanup-job-results.png)

More screenshots can be found in the [Using the App](https://nautobot-app-livedata.readthedocs.io/en/latest/user/app_use_cases/) page in the documentation. Here's a quick overview of some of the app's added functionality:

## Documentation

Full documentation for this App can be found over on the [Nautobot-App-Livedtata Docs](https://nautobot-app-livedata.readthedocs.io/en/latest) website:

- [User Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/user/app_overview/) - Overview, Using the App, Getting Started.
- [Administrator Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/admin/install/) - How to Install, Configure, Upgrade, or Uninstall the App.
- [Developer Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/dev/contributing/) - Extending the App, Code Reference, Contribution Guide.
- [Release Notes / Changelog](https://nautobot-app-livedata.readthedocs.io/en/latest/admin/release_notes/).
- [Frequently Asked Questions](https://nautobot-app-livedata.readthedocs.io/en/latest/user/faq/).

### Contributing to the Documentation

You can find all the Markdown source for the App documentation under the [`docs`](https://github.com/jifox/nautobot-app-livedata/tree/develop/docs) folder in this repository. For simple edits, a Markdown capable editor is sufficient: clone the repository and edit away.

If you need to view the fully-generated documentation site, you can build it with [MkDocs](https://www.mkdocs.org/). A container hosting the documentation can be started using the `invoke` commands (details in the [Development Environment Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/dev/dev_environment/#docker-development-environment)) on [http://localhost:8001](http://localhost:8001). Using this container, as your changes to the documentation are saved, they will be automatically rebuilt and any pages currently being viewed will be reloaded in your browser.

Any PRs with fixes or improvements are very welcome!

## Questions

For any questions or comments, please check the [FAQ](https://nautobot-app-livedata.readthedocs.io/en/latest/user/faq/) first. Feel free to also swing by the [Network to Code Slack](https://networktocode.slack.com/) (channel `#nautobot`), sign up [here](http://slack.networktocode.com/) if you don't have an account.

# Support for Filter Commands in Live Device Output Using !! Syntax

## Filter Syntax

You can now append a filter command to the end of a device command using the `!!` delimiter. The string following `!!` specifies the filter operation to be applied to the command output.

### Examples

- `show logging | i {{intf_number}} !!EXACT:{{intf_number}}!!` — Filters the output to contain only lines that contain the interface number as a whole word (e.g., matches ` Gi1/0/1`, `1/0/1  `, `^1/0/1 `, `1/0/1$` but not `11/0/1`, `1/0/11`, `foo1/0/1bar`).
- `show logging !!LAST:100!!` — Returns only the last 100 lines of the output.
- `show logging !!FIRST:10!!` — Returns only the first 10 lines of the output.
- `show logging !!EXACT:{{intf_number}}!!FIRST:5!!` — Filters for lines containing the interface number, then returns only the first 5 matching lines.

### Supported Filters
- `!!EXACT:<pattern>!!` — Only lines that contain `<pattern>` as a whole word (ignoring leading/trailing whitespace, not matching substrings within other numbers or words)
- `!!LAST:<N>!!` — Only the last N lines
- `!!FIRST:<N>!!` — Only the first N lines

Additional filters may be added in the future.

This feature provides a consistent filtering mechanism across all supported platforms, reducing the need for custom scripts or manual output parsing.

---


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jifox/nautobot-app-livedata.git",
    "name": "nautobot-app-livedata",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.9.2",
    "maintainer_email": null,
    "keywords": "nautobot, nautobot-app, nautobot-plugin",
    "author": "Josef Fuchs",
    "author_email": "josef.fuchs@j-fuchs.at",
    "download_url": "https://files.pythonhosted.org/packages/3b/4e/5b674b2d50cc512cb3eae619e1e49a8f893b92dc2fd27fcfee0eee5dccbf/nautobot_app_livedata-2.4.6.tar.gz",
    "platform": null,
    "description": "# Nautobot App Livedata\n\n<!--\nDeveloper Note - Remove Me!\n\nThe README will have certain links/images broken until the PR is merged into `develop`. Update the GitHub links with whichever branch you're using (main etc.) if different.\n\nThe logo of the project is a placeholder (docs/images/icon-livedata.png) - please replace it with your app icon, making sure it's at least 200x200px and has a transparent background!\n\nTo avoid extra work and temporary links, make sure that publishing docs (or merging a PR) is done at the same time as setting up the docs site on RTD, then test everything.\n-->\n\n<p align=\"center\">\n  <img src=\"https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/icon-livedata.png\" class=\"logo\" height=\"200px\">\n  <br>\n  <!-- CI passing badge -->\n  <a href=\"https://github.com/jifox/nautobot-app-livedata/actions\"><img src=\"https://github.com/jifox/nautobot-app-livedata/actions/workflows/ci.yml/badge.svg?branch=main\"></a>\n  <!-- docs build status badge -->\n  <a href=\"https://nautobot-app-livedata.readthedocs.io/en/latest/\"><img src=\"https://readthedocs.org/projects/nautobot-app-livedata/badge/\"></a>\n  <!-- pypi version Badge -->\n  <a href=\"https://pypi.org/project/nautobot-app-livedata/\"><img src=\"https://img.shields.io/pypi/v/nautobot-app-livedata\"></a>\n  <!-- downloads batch -->\n  <a href=\"https://pypi.org/project/nautobot-app-livedata/\"><img src=\"https://img.shields.io/pypi/dm/nautobot-app-livedata\"></a>\n  <br>\n  An <a href=\"https://networktocode.com/nautobot-apps/\">App</a> for <a href=\"https://nautobot.com/\">Nautobot</a>.\n</p>\n\n## Overview\n\nThe [Nautobot App LiveData](https://github.com/jifox/nautobot-app-livedata/) is providing real-time data from network devices that are supported by [Netmiko](https://github.com/ktbyers/netmiko).\n\nAt the moment, the app is supporting only interface specific data. The data is collected from the devices via platform specific show commands and will be presented in the interface's 'Life Data' tab.\n\nThis app addresses the need for dynamic and up-to-date network information, allowing network administrators and engineers to make informed decisions based on the latest data. \n\n### Screenshots\n\n- Live Data Interface Output for interfaces\n\n  ![Livedata output screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-app-output.png)\n\n- Live Data Device Output for devices\n\n  ![Livedata output screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-device-output.png)\n\n- Configure the show commands to be executed on Platform level:\n\n  ![ Platform Screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-platform-detail.png)\n\n- Job to clean up old data:\n\n  ![ Cleanup Job Results Screenshot](https://raw.githubusercontent.com/jifox/nautobot-app-livedata/develop/docs/images/livedata-app-cleanup-job-results.png)\n\nMore screenshots can be found in the [Using the App](https://nautobot-app-livedata.readthedocs.io/en/latest/user/app_use_cases/) page in the documentation. Here's a quick overview of some of the app's added functionality:\n\n## Documentation\n\nFull documentation for this App can be found over on the [Nautobot-App-Livedtata Docs](https://nautobot-app-livedata.readthedocs.io/en/latest) website:\n\n- [User Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/user/app_overview/) - Overview, Using the App, Getting Started.\n- [Administrator Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/admin/install/) - How to Install, Configure, Upgrade, or Uninstall the App.\n- [Developer Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/dev/contributing/) - Extending the App, Code Reference, Contribution Guide.\n- [Release Notes / Changelog](https://nautobot-app-livedata.readthedocs.io/en/latest/admin/release_notes/).\n- [Frequently Asked Questions](https://nautobot-app-livedata.readthedocs.io/en/latest/user/faq/).\n\n### Contributing to the Documentation\n\nYou can find all the Markdown source for the App documentation under the [`docs`](https://github.com/jifox/nautobot-app-livedata/tree/develop/docs) folder in this repository. For simple edits, a Markdown capable editor is sufficient: clone the repository and edit away.\n\nIf you need to view the fully-generated documentation site, you can build it with [MkDocs](https://www.mkdocs.org/). A container hosting the documentation can be started using the `invoke` commands (details in the [Development Environment Guide](https://nautobot-app-livedata.readthedocs.io/en/latest/dev/dev_environment/#docker-development-environment)) on [http://localhost:8001](http://localhost:8001). Using this container, as your changes to the documentation are saved, they will be automatically rebuilt and any pages currently being viewed will be reloaded in your browser.\n\nAny PRs with fixes or improvements are very welcome!\n\n## Questions\n\nFor any questions or comments, please check the [FAQ](https://nautobot-app-livedata.readthedocs.io/en/latest/user/faq/) first. Feel free to also swing by the [Network to Code Slack](https://networktocode.slack.com/) (channel `#nautobot`), sign up [here](http://slack.networktocode.com/) if you don't have an account.\n\n# Support for Filter Commands in Live Device Output Using !! Syntax\n\n## Filter Syntax\n\nYou can now append a filter command to the end of a device command using the `!!` delimiter. The string following `!!` specifies the filter operation to be applied to the command output.\n\n### Examples\n\n- `show logging | i {{intf_number}} !!EXACT:{{intf_number}}!!` \u2014 Filters the output to contain only lines that contain the interface number as a whole word (e.g., matches ` Gi1/0/1`, `1/0/1  `, `^1/0/1 `, `1/0/1$` but not `11/0/1`, `1/0/11`, `foo1/0/1bar`).\n- `show logging !!LAST:100!!` \u2014 Returns only the last 100 lines of the output.\n- `show logging !!FIRST:10!!` \u2014 Returns only the first 10 lines of the output.\n- `show logging !!EXACT:{{intf_number}}!!FIRST:5!!` \u2014 Filters for lines containing the interface number, then returns only the first 5 matching lines.\n\n### Supported Filters\n- `!!EXACT:<pattern>!!` \u2014 Only lines that contain `<pattern>` as a whole word (ignoring leading/trailing whitespace, not matching substrings within other numbers or words)\n- `!!LAST:<N>!!` \u2014 Only the last N lines\n- `!!FIRST:<N>!!` \u2014 Only the first N lines\n\nAdditional filters may be added in the future.\n\nThis feature provides a consistent filtering mechanism across all supported platforms, reducing the need for custom scripts or manual output parsing.\n\n---\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Provides a live view of network data within Nautobot.",
    "version": "2.4.6",
    "project_urls": {
        "Documentation": "https://nautobot-app-livedata.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/jifox/nautobot-app-livedata.git",
        "Repository": "https://github.com/jifox/nautobot-app-livedata.git"
    },
    "split_keywords": [
        "nautobot",
        " nautobot-app",
        " nautobot-plugin"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "147672ad89f67660d1ee372400a9a7a7e172881431158913b4e74909d639e4b1",
                "md5": "b11f26007030d98d5abc40df76f59935",
                "sha256": "0898a91a91fff7d04cd19b293bb963186fb07d22d579ea4f3f4352ceac5fd854"
            },
            "downloads": -1,
            "filename": "nautobot_app_livedata-2.4.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b11f26007030d98d5abc40df76f59935",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.9.2",
            "size": 2648151,
            "upload_time": "2025-07-27T08:30:48",
            "upload_time_iso_8601": "2025-07-27T08:30:48.223893Z",
            "url": "https://files.pythonhosted.org/packages/14/76/72ad89f67660d1ee372400a9a7a7e172881431158913b4e74909d639e4b1/nautobot_app_livedata-2.4.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b4e5b674b2d50cc512cb3eae619e1e49a8f893b92dc2fd27fcfee0eee5dccbf",
                "md5": "2ab3047b34b330dc5b884832852daa45",
                "sha256": "60ebcdaddc8a066ace6a32b2f3f91ed494f9228db45b28f4a1575c9c8a69d285"
            },
            "downloads": -1,
            "filename": "nautobot_app_livedata-2.4.6.tar.gz",
            "has_sig": false,
            "md5_digest": "2ab3047b34b330dc5b884832852daa45",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.9.2",
            "size": 2588457,
            "upload_time": "2025-07-27T08:30:50",
            "upload_time_iso_8601": "2025-07-27T08:30:50.031539Z",
            "url": "https://files.pythonhosted.org/packages/3b/4e/5b674b2d50cc512cb3eae619e1e49a8f893b92dc2fd27fcfee0eee5dccbf/nautobot_app_livedata-2.4.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-27 08:30:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jifox",
    "github_project": "nautobot-app-livedata",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nautobot-app-livedata"
}
        
Elapsed time: 2.92364s