Metadata-Version: 2.1
Name: netbox-kafka-producer
Version: 1.0.21
Summary: Easily publish NetBox changes to Kafka
Home-page: https://github.com/ebusto/netbox-kafka-producer
Author: Eric Busto
Author-email: ebusto@nvidia.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# Introduction
This module provides middleware to publish [NetBox](https://github.com/digitalocean/netbox/) changes to [Kafka](https://kafka.apache.org/).

# Installation
`pip install netbox-kafka-producer`

# Configuration
Add the following to your NetBox settings.
```
INSTALLED_APPS += (
	'netbox_kafka_producer',
)

MIDDLEWARE += (
	'netbox_kafka_producer.middleware.KafkaChangeMiddleware',
)

KAFKA = {
	'SERVERS': 'kafka01,kafka02,kafka03',
	'TOPIC':   'netbox',
}
```


