https://github.com/redhatinsights/insights-core-tutorials
Insights Core Repository that contains Tutorials and examples for development and test setup for Insights Parsers, Combiners and Rules.
https://github.com/redhatinsights/insights-core-tutorials
Last synced: about 2 months ago
JSON representation
Insights Core Repository that contains Tutorials and examples for development and test setup for Insights Parsers, Combiners and Rules.
- Host: GitHub
- URL: https://github.com/redhatinsights/insights-core-tutorials
- Owner: RedHatInsights
- Created: 2019-01-07T23:01:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-04T17:04:54.000Z (over 1 year ago)
- Last Synced: 2025-03-27T18:52:35.015Z (2 months ago)
- Language: Python
- Size: 89.8 KB
- Stars: 5
- Watchers: 17
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
=======================
Insights Core Tutorials
=======================This repository provides tutorials and examples of how to build and test_secure_shell Insights Core Parsers
, Combiners and Rules.Follow the tutorial links below to step through each section to go through the process of creating and running
each of the components represented in the "insights_examples" directory.The process to create the files contained in the ``insights-core-tutorials/insights_examples`` directory are described
in detail in the tutorials:- `Insights Core Tutorials Read the Docs
`_If you would like to just run pytest for the examples follow the ``Preparing Your Development Environment`` section of
``Insights Core Tutorials Read the Docs`` to create the environment and run the pytests.The examples directory includes these files::
insights_examples
├── combiners
│ ├── hostname_uh.py
│ └── __init__.py
├── __init__.py
├── parsers
│ ├── __init__.py
│ └── secure_shell.py
├── rules
│ ├── bash_bug.py
│ ├── __init__.py
│ ├── is_fedora.py
│ └── sshd_secure.py
└── tests
├── combiners
│ ├── __init__.py
│ └── test_hostname_uh.py
├── __init__.py
├── integration.py
├── parsers
│ ├── __init__.py
│ └── test_secure_shell.py
└── rules
├── __init__.py
├── test_bash_bug.py
├── test_is_fedora.py
└── test_sshd_secure.py