Metadata-Version: 2.1
Name: Kqlmagic
Version: 0.1.77
Summary: Kqlmagic: Microsoft Azure Monitor magic extension to Jupyter notebook
Home-page: https://github.com/Microsoft/jupyter-Kqlmagic
Author: Michael Binshtock
Author-email: michabin@microsoft.com
Maintainer: Michael Binshtock
Maintainer-email: michabin@microsoft.com
License: MIT License
Keywords: database ipython jupyter jupyterlab jupyter-notebook query language kql kusto loganalytics applicationinsights
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Customer Service
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Environment :: Console
Classifier: Environment :: Plugins
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Framework :: IPython
Classifier: Framework :: Jupyter
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Requires-Dist: ipython (>=7.0.1)
Requires-Dist: plotly (>=3.3.0)
Requires-Dist: prettytable (>=0.7.2)
Requires-Dist: matplotlib
Requires-Dist: pandas (>=0.23.4)
Requires-Dist: azure-kusto-data (==0.0.15)
Requires-Dist: azure-kusto-ingest (==0.0.15)
Requires-Dist: adal (>=1.1.0)
Requires-Dist: Pygments (>=2.2.0)
Requires-Dist: seaborn (>=0.9.0)
Requires-Dist: requests (>=2.19.1)
Requires-Dist: python-dateutil (>=2.7.3)
Requires-Dist: traitlets
Requires-Dist: psutil
Requires-Dist: six (>=1.11.0)
Requires-Dist: setuptools (>=40.4.3)
Requires-Dist: Markdown
Requires-Dist: beautifulsoup4

Kqlmagic: Microsoft Azure Monitor magic extension to Jupyter notebook
=====================================================================
Enables notebook experience, exploring Microsoft Azure Monitor data: Azure Data Explorer (Kusto),
ApplicationInsights, and LogAnalytics data, from Jupyter notebook (Python3 kernel), using kql (Kusto Query language).

Example
--------

.. code-block:: python

    Install latest version of package
    In [1]: !pip Kqlmagic --no-cache-dir --upgrade

.. code-block:: python

    Add Kqlmagic to notebook magics
    In [2]: %reload_ext Kqlmagic

.. code-block:: python

    Connect to database at cluster
    In [3]: %kql kusto://code;cluster='help';database='Samples'

.. code-block:: python

    Query database@cluster and render result set to a pie chart
    In [4]: %kql Samples@help StormEvents | summarize count() by State | sort by count_ | limit 10 | render piechart title='my apple pie'



Get Started Notebooks
---------------------

* `Get Started with Kqlmagic for Kusto notebook <https://mybinder.org/v2/gh/Microsoft/jupyter-Kqlmagic/master?filepath=notebooks%2FQuickStart.ipynb>`_.

* `Get Started with Kqlmagic for Application Insights notebook <https://mybinder.org/v2/gh/Microsoft/jupyter-Kqlmagic/master?filepath=notebooks%2FQuickStartAI.ipynb>`_.

* `Get Started with Kqlmagic for Log Analytics notebook <https://mybinder.org/v2/gh/Microsoft/jupyter-Kqlmagic/master?filepath=notebooks%2FQuickStartLA.ipynb>`_.


* `Parametrize your Kqlmagic query with Python notebook <https://mybinder.org/v2/gh/Microsoft/jupyter-Kqlmagic/master?filepath=notebooks%2FParametrizeYourQuery.ipynb>`_.

* `Choose colors palette for your Kqlmagic query chart result notebook <https://mybinder.org/v2/gh/Microsoft/jupyter-Kqlmagic/master?filepath=notebooks%2FColorYourCharts.ipynb>`_.


Links
-----

* `How to install the package <https://github.com/Microsoft/jupyter-Kqlmagic#install>`_.
* `How to load the magic extension <https://github.com/Microsoft/jupyter-Kqlmagic#load>`_.
* `GitHub Repository <https://github.com/Microsoft/jupyter-Kqlmagic/tree/master>`_.



