You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

github.com/gradiented/easyisa

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/gradiented/easyisa

v0.0.0-20191020160540-57594c78e640
Source
Go
Version published
Created
Source

Starting project

  • docker-compose up -d
  • make serve

Debezium (Event driven)

  • Start Kafka Connector: (TODO: Add to docker compose) docker run --name connect --network easyisa_default -p 8083:8083 -e BOOTSTRAP_SERVERS=easyisa_kafka_1:9092 -e GROUP_ID=1 -e CONFIG_STORAGE_TOPIC=easyisa_connect_configs -e OFFSET_STORAGE_TOPIC=easyisa_connect_offsets -e STATUS_STORAGE_TOPIC=easyisa_connect_statuses --link easyisa_zookeeper_1:zookeeper --link easyisa_kafka_1:kafka --link easyisa_postgres_1:postgres debezium/connect:0.10

  • Register the default topic using cadence-cli docker run --rm ubercadence/cli:master --address host.docker.internal:7933 --domain easyisa-domain domain register

  • Connect Prisma DB to Kafka (TODO: Add to Makefile) curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" http://localhost:8083/connectors/ -d @connector.json

  • Start sample consumer (For debugging) docker run -it --name watcher --rm --network easyisa_default -e KAFKA_BROKER=easyisa_kafka_1:9092 -e ZOOKEEPER_CONNECT=easyisa_zookeeper_1:2181 --link easyisa_zookeeper_1:zookeeper --link easyisa_kafka_1:kafka debezium/kafka:0.10 watch-topic -a -k prisma.default_default.Post

FAQs

Package last updated on 20 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts