├── .gitattributes ├── .github └── workflows │ ├── deb.yml │ ├── go-linux.yml │ ├── go-mac-m1-release.yml │ ├── go-mac-x64-release.yml │ ├── go-mac.yml │ ├── homebrew.yml │ ├── publish-manual.yml │ ├── publish.yml │ ├── snap-arm64.yml │ └── snap.yml ├── .gitignore ├── .go-version ├── .localci └── lint │ └── golangci.yml ├── .pre-commit-config.yaml ├── Dockerfile ├── Dockerfile.alpine ├── Dockerfile.scratch ├── LICENSE ├── Makefile ├── Readme.md ├── ReleaseNotes.md ├── config └── jrconfig.json ├── go.mod ├── go.sum ├── images └── goreport.png ├── jr.go ├── k6 └── exec │ ├── Dockerfile │ ├── README.md │ └── k8s-test.yaml ├── locust ├── Dockerfile ├── README.md └── jr.py ├── make_install.sh ├── make_install_offline.sh ├── make_install_race.sh ├── pkg ├── cmd │ ├── createTopic.go │ ├── emitter.go │ ├── emitterList.go │ ├── emitterRun.go │ ├── emitterShow.go │ ├── function.go │ ├── functionList.go │ ├── html │ │ ├── bs │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── images │ │ │ └── jr_logo.png │ │ ├── index.html │ │ ├── js │ │ │ ├── font-awesome.js │ │ │ ├── highlight-11.9.0.min.js │ │ │ ├── javascript.min.js │ │ │ └── jquery-3.2.1.slim.min.js │ │ ├── stylesheets │ │ │ ├── hljscss-11.9.0.css │ │ │ ├── main.css │ │ │ └── ocean.min.css │ │ └── templatedev.html │ ├── producer.go │ ├── producerList.go │ ├── root.go │ ├── server.go │ ├── template.go │ ├── templateList.go │ ├── templateList_test.go │ ├── templateRun.go │ ├── templateShow.go │ └── version.go ├── configuration │ └── configuration.go ├── constants │ └── constants.go ├── ctx │ └── context.go ├── emitter │ ├── emitter.go │ ├── loop.go │ └── throughput.go ├── functions │ ├── address.go │ ├── finance.go │ ├── functions.go │ ├── functionsDescription.go │ ├── helper.go │ ├── networking.go │ ├── nonsense.go │ ├── people.go │ ├── phone.go │ ├── regex.go │ ├── timeAndDates.go │ └── utilities.go ├── functions_test │ ├── finance_test.go │ ├── functions_test.go │ ├── regex_test.go │ └── templates_test.go ├── generator │ ├── generate.go │ └── generateRegistry.go ├── producers │ ├── awsdynamodb │ │ ├── config.go │ │ ├── config.json.example │ │ └── producer.go │ ├── azblobstorage │ │ ├── config.go │ │ ├── config.json.example │ │ └── producer.go │ ├── azcosmosdb │ │ ├── config.go │ │ ├── config.json.example │ │ └── producer.go │ ├── cassandra │ │ ├── config.go │ │ ├── config.json.example │ │ └── producer.go │ ├── console │ │ └── ConsoleProducer.go │ ├── elastic │ │ ├── config.json.example │ │ └── elasticProducer.go │ ├── gcs │ │ ├── config.json.example │ │ └── gcsProducer.go │ ├── http │ │ ├── config.go │ │ ├── config.json.example │ │ ├── producer.go │ │ └── producer_test.go │ ├── kafka │ │ ├── config.properties.example │ │ ├── kafkaProducer.go │ │ └── registry.properties.example │ ├── luascript │ │ ├── config.go │ │ ├── producer.go │ │ └── producer_test.go │ ├── mongodb │ │ ├── config-atlas.json.example │ │ ├── config.json.example │ │ ├── mongoProducer.go │ │ └── mongoProducer_test.go │ ├── redis │ │ ├── config.json.example │ │ ├── jsonWriter.go │ │ ├── jsonWriter_test.go │ │ ├── redisProducer.go │ │ └── redisProducer_test.go │ ├── s3 │ │ ├── config.json.example │ │ └── s3Producer.go │ ├── server │ │ └── JsonProducer.go │ ├── test │ │ └── TestProducer.go │ ├── wamp │ │ ├── config.json.example │ │ ├── wampProducer.go │ │ └── wampProducer_test.go │ ├── wamprpc │ │ ├── config.json.example │ │ ├── wampRPCProducer.go │ │ └── wampRPCProducer_test.go │ └── wasm │ │ ├── wasm_config.go │ │ ├── wasm_producer.go │ │ ├── wasm_producer_test.go │ │ ├── wasm_producer_test_function.go │ │ └── wasm_producer_test_function.wasm ├── tpl │ └── tpl.go └── types │ ├── csv_product.avsc │ ├── csv_user.avsc │ ├── finance_stock_trade.avsc │ ├── fleetmgmt_description.avsc │ ├── fleetmgmt_location.avsc │ ├── fleetmgmt_sensor.avsc │ ├── gaming_game.avsc │ ├── gaming_player.avsc │ ├── gaming_player_activity.avsc │ ├── genericstore_purchase.avsc │ ├── insurance_customer.avsc │ ├── insurance_customer_activity.avsc │ ├── insurance_offer.avsc │ ├── inventorymgmt_inventory.avsc │ ├── inventorymgmt_product.avsc │ ├── iot_device_information.avsc │ ├── map_dumb_schema.avsc │ ├── marketing_campaign_finance.avsc │ ├── net_device.avsc │ ├── payment_credit_card.avsc │ ├── payment_transaction.avsc │ ├── payroll_bonus.avsc │ ├── payroll_employee.avsc │ ├── payroll_employee_location.avsc │ ├── pizzastore_order.avsc │ ├── pizzastore_order_cancelled.avsc │ ├── pizzastore_order_completed.avsc │ ├── shoestore_clickstream.avsc │ ├── shoestore_customer.avsc │ ├── shoestore_order.avsc │ ├── shoestore_shoe.avsc │ ├── shopping_order.avsc │ ├── shopping_rating.avsc │ ├── siem_log.avsc │ ├── store.avsc │ ├── syslog_log.avsc │ ├── user.avsc │ ├── users.avsc │ ├── users_array_map.avsc │ ├── webanalytics_clickstream.avsc │ ├── webanalytics_code.avsc │ ├── webanalytics_page_view.avsc │ └── webanalytics_user.avsc ├── rpm └── jr.spec ├── snap └── snapcraft.yaml ├── templates ├── csv_product.tpl ├── csv_user.tpl ├── data │ ├── de │ │ ├── actor │ │ ├── beer │ │ ├── city │ │ ├── director │ │ ├── film │ │ ├── movie │ │ ├── nameF │ │ ├── nameM │ │ ├── phone │ │ ├── street │ │ ├── surname │ │ ├── wine │ │ └── zip │ ├── es │ │ ├── actor │ │ ├── beer │ │ ├── city │ │ ├── director │ │ ├── film │ │ ├── movie │ │ ├── nameF │ │ ├── nameM │ │ ├── phone │ │ ├── street │ │ ├── surname │ │ ├── wine │ │ └── zip │ ├── fr │ │ ├── actor │ │ ├── beer │ │ ├── city │ │ ├── director │ │ ├── film │ │ ├── movie │ │ ├── nameF │ │ ├── nameM │ │ ├── phone │ │ ├── street │ │ ├── surname │ │ ├── wine │ │ └── zip │ ├── it │ │ ├── actor │ │ ├── beer │ │ ├── capital │ │ ├── city │ │ ├── director │ │ ├── film │ │ ├── movie │ │ ├── nameF │ │ ├── nameM │ │ ├── phone │ │ ├── regione │ │ ├── street │ │ ├── surname │ │ ├── wine │ │ └── zip │ ├── uk │ │ ├── actor │ │ ├── beer │ │ ├── city │ │ ├── director │ │ ├── film │ │ ├── movie │ │ ├── nameF │ │ ├── nameM │ │ ├── phone │ │ ├── street │ │ ├── surname │ │ ├── wine │ │ └── zip │ └── us │ │ ├── actor │ │ ├── beer │ │ ├── capital │ │ ├── city │ │ ├── company │ │ ├── cool_name │ │ ├── country │ │ ├── country_code │ │ ├── director │ │ ├── mail_provider │ │ ├── mobile_phone │ │ ├── movie │ │ ├── nameF │ │ ├── nameM │ │ ├── phone │ │ ├── sport_brand │ │ ├── state │ │ ├── state_short │ │ ├── stock_symbol │ │ ├── street │ │ ├── surname │ │ ├── tag │ │ ├── wine │ │ └── zip ├── finance_stock_trade.tpl ├── fleet_mgmt_sensors.tpl ├── fleetmgmt_description.tpl ├── fleetmgmt_location.tpl ├── fleetmgmt_sensor.tpl ├── gaming_game.tpl ├── gaming_player.tpl ├── gaming_player_activity.tpl ├── insurance_customer.tpl ├── insurance_customer_activity.tpl ├── insurance_offer.tpl ├── inventorymgmt_inventory.tpl ├── inventorymgmt_product.tpl ├── iot_device_information.tpl ├── marketing_campaign_finance.tpl ├── net_device.tpl ├── payment_credit_card.tpl ├── payment_transaction.tpl ├── payroll_bonus.tpl ├── payroll_employee.tpl ├── payroll_employee_location.tpl ├── pizzastore_order.tpl ├── pizzastore_order_cancelled.tpl ├── pizzastore_order_completed.tpl ├── pizzastore_util.tpl ├── shoestore_clickstream.tpl ├── shoestore_customer.tpl ├── shoestore_order.tpl ├── shoestore_shoe.tpl ├── shopping_order.tpl ├── shopping_purchase.tpl ├── shopping_rating.tpl ├── siem_log.tpl ├── store.tpl ├── syslog_log.tpl ├── user.tpl ├── user_with_key.tpl ├── users.tpl ├── users_array_map.tpl ├── util_ip.tpl ├── util_userid.tpl ├── webanalytics_clickstream.tpl ├── webanalytics_code.tpl ├── webanalytics_page_view.tpl └── webanalytics_user.tpl ├── testRest.http └── testfiles ├── polygon.geojson ├── polyline.geojson ├── products.csv ├── test2.csv └── test3.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/deb.yml -------------------------------------------------------------------------------- /.github/workflows/go-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/go-linux.yml -------------------------------------------------------------------------------- /.github/workflows/go-mac-m1-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/go-mac-m1-release.yml -------------------------------------------------------------------------------- /.github/workflows/go-mac-x64-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/go-mac-x64-release.yml -------------------------------------------------------------------------------- /.github/workflows/go-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/go-mac.yml -------------------------------------------------------------------------------- /.github/workflows/homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/homebrew.yml -------------------------------------------------------------------------------- /.github/workflows/publish-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/publish-manual.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/snap-arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/snap-arm64.yml -------------------------------------------------------------------------------- /.github/workflows/snap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.github/workflows/snap.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.24 2 | -------------------------------------------------------------------------------- /.localci/lint/golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.localci/lint/golangci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/Dockerfile.alpine -------------------------------------------------------------------------------- /Dockerfile.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/Dockerfile.scratch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/Readme.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /config/jrconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/config/jrconfig.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/go.sum -------------------------------------------------------------------------------- /images/goreport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/images/goreport.png -------------------------------------------------------------------------------- /jr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/jr.go -------------------------------------------------------------------------------- /k6/exec/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/k6/exec/Dockerfile -------------------------------------------------------------------------------- /k6/exec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/k6/exec/README.md -------------------------------------------------------------------------------- /k6/exec/k8s-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/k6/exec/k8s-test.yaml -------------------------------------------------------------------------------- /locust/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/locust/Dockerfile -------------------------------------------------------------------------------- /locust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/locust/README.md -------------------------------------------------------------------------------- /locust/jr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/locust/jr.py -------------------------------------------------------------------------------- /make_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/make_install.sh -------------------------------------------------------------------------------- /make_install_offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/make_install_offline.sh -------------------------------------------------------------------------------- /make_install_race.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/make_install_race.sh -------------------------------------------------------------------------------- /pkg/cmd/createTopic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/createTopic.go -------------------------------------------------------------------------------- /pkg/cmd/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/emitter.go -------------------------------------------------------------------------------- /pkg/cmd/emitterList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/emitterList.go -------------------------------------------------------------------------------- /pkg/cmd/emitterRun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/emitterRun.go -------------------------------------------------------------------------------- /pkg/cmd/emitterShow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/emitterShow.go -------------------------------------------------------------------------------- /pkg/cmd/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/function.go -------------------------------------------------------------------------------- /pkg/cmd/functionList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/functionList.go -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-grid.css -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap.css -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap.css.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap.min.css -------------------------------------------------------------------------------- /pkg/cmd/html/bs/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.js -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.js.map -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.min.js -------------------------------------------------------------------------------- /pkg/cmd/html/bs/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/bs/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /pkg/cmd/html/images/jr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/images/jr_logo.png -------------------------------------------------------------------------------- /pkg/cmd/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/index.html -------------------------------------------------------------------------------- /pkg/cmd/html/js/font-awesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/js/font-awesome.js -------------------------------------------------------------------------------- /pkg/cmd/html/js/highlight-11.9.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/js/highlight-11.9.0.min.js -------------------------------------------------------------------------------- /pkg/cmd/html/js/javascript.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/js/javascript.min.js -------------------------------------------------------------------------------- /pkg/cmd/html/js/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/js/jquery-3.2.1.slim.min.js -------------------------------------------------------------------------------- /pkg/cmd/html/stylesheets/hljscss-11.9.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/stylesheets/hljscss-11.9.0.css -------------------------------------------------------------------------------- /pkg/cmd/html/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | body {color: black} -------------------------------------------------------------------------------- /pkg/cmd/html/stylesheets/ocean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/stylesheets/ocean.min.css -------------------------------------------------------------------------------- /pkg/cmd/html/templatedev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/html/templatedev.html -------------------------------------------------------------------------------- /pkg/cmd/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/producer.go -------------------------------------------------------------------------------- /pkg/cmd/producerList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/producerList.go -------------------------------------------------------------------------------- /pkg/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/root.go -------------------------------------------------------------------------------- /pkg/cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/server.go -------------------------------------------------------------------------------- /pkg/cmd/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/template.go -------------------------------------------------------------------------------- /pkg/cmd/templateList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/templateList.go -------------------------------------------------------------------------------- /pkg/cmd/templateList_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/templateList_test.go -------------------------------------------------------------------------------- /pkg/cmd/templateRun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/templateRun.go -------------------------------------------------------------------------------- /pkg/cmd/templateShow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/templateShow.go -------------------------------------------------------------------------------- /pkg/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/cmd/version.go -------------------------------------------------------------------------------- /pkg/configuration/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/configuration/configuration.go -------------------------------------------------------------------------------- /pkg/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/constants/constants.go -------------------------------------------------------------------------------- /pkg/ctx/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/ctx/context.go -------------------------------------------------------------------------------- /pkg/emitter/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/emitter/emitter.go -------------------------------------------------------------------------------- /pkg/emitter/loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/emitter/loop.go -------------------------------------------------------------------------------- /pkg/emitter/throughput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/emitter/throughput.go -------------------------------------------------------------------------------- /pkg/functions/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/address.go -------------------------------------------------------------------------------- /pkg/functions/finance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/finance.go -------------------------------------------------------------------------------- /pkg/functions/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/functions.go -------------------------------------------------------------------------------- /pkg/functions/functionsDescription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/functionsDescription.go -------------------------------------------------------------------------------- /pkg/functions/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/helper.go -------------------------------------------------------------------------------- /pkg/functions/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/networking.go -------------------------------------------------------------------------------- /pkg/functions/nonsense.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/nonsense.go -------------------------------------------------------------------------------- /pkg/functions/people.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/people.go -------------------------------------------------------------------------------- /pkg/functions/phone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/phone.go -------------------------------------------------------------------------------- /pkg/functions/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/regex.go -------------------------------------------------------------------------------- /pkg/functions/timeAndDates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/timeAndDates.go -------------------------------------------------------------------------------- /pkg/functions/utilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions/utilities.go -------------------------------------------------------------------------------- /pkg/functions_test/finance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions_test/finance_test.go -------------------------------------------------------------------------------- /pkg/functions_test/functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions_test/functions_test.go -------------------------------------------------------------------------------- /pkg/functions_test/regex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions_test/regex_test.go -------------------------------------------------------------------------------- /pkg/functions_test/templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/functions_test/templates_test.go -------------------------------------------------------------------------------- /pkg/generator/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/generator/generate.go -------------------------------------------------------------------------------- /pkg/generator/generateRegistry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/generator/generateRegistry.go -------------------------------------------------------------------------------- /pkg/producers/awsdynamodb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/awsdynamodb/config.go -------------------------------------------------------------------------------- /pkg/producers/awsdynamodb/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/awsdynamodb/config.json.example -------------------------------------------------------------------------------- /pkg/producers/awsdynamodb/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/awsdynamodb/producer.go -------------------------------------------------------------------------------- /pkg/producers/azblobstorage/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/azblobstorage/config.go -------------------------------------------------------------------------------- /pkg/producers/azblobstorage/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/azblobstorage/config.json.example -------------------------------------------------------------------------------- /pkg/producers/azblobstorage/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/azblobstorage/producer.go -------------------------------------------------------------------------------- /pkg/producers/azcosmosdb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/azcosmosdb/config.go -------------------------------------------------------------------------------- /pkg/producers/azcosmosdb/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/azcosmosdb/config.json.example -------------------------------------------------------------------------------- /pkg/producers/azcosmosdb/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/azcosmosdb/producer.go -------------------------------------------------------------------------------- /pkg/producers/cassandra/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/cassandra/config.go -------------------------------------------------------------------------------- /pkg/producers/cassandra/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/cassandra/config.json.example -------------------------------------------------------------------------------- /pkg/producers/cassandra/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/cassandra/producer.go -------------------------------------------------------------------------------- /pkg/producers/console/ConsoleProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/console/ConsoleProducer.go -------------------------------------------------------------------------------- /pkg/producers/elastic/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/elastic/config.json.example -------------------------------------------------------------------------------- /pkg/producers/elastic/elasticProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/elastic/elasticProducer.go -------------------------------------------------------------------------------- /pkg/producers/gcs/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/gcs/config.json.example -------------------------------------------------------------------------------- /pkg/producers/gcs/gcsProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/gcs/gcsProducer.go -------------------------------------------------------------------------------- /pkg/producers/http/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/http/config.go -------------------------------------------------------------------------------- /pkg/producers/http/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/http/config.json.example -------------------------------------------------------------------------------- /pkg/producers/http/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/http/producer.go -------------------------------------------------------------------------------- /pkg/producers/http/producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/http/producer_test.go -------------------------------------------------------------------------------- /pkg/producers/kafka/config.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/kafka/config.properties.example -------------------------------------------------------------------------------- /pkg/producers/kafka/kafkaProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/kafka/kafkaProducer.go -------------------------------------------------------------------------------- /pkg/producers/kafka/registry.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/kafka/registry.properties.example -------------------------------------------------------------------------------- /pkg/producers/luascript/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/luascript/config.go -------------------------------------------------------------------------------- /pkg/producers/luascript/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/luascript/producer.go -------------------------------------------------------------------------------- /pkg/producers/luascript/producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/luascript/producer_test.go -------------------------------------------------------------------------------- /pkg/producers/mongodb/config-atlas.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/mongodb/config-atlas.json.example -------------------------------------------------------------------------------- /pkg/producers/mongodb/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/mongodb/config.json.example -------------------------------------------------------------------------------- /pkg/producers/mongodb/mongoProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/mongodb/mongoProducer.go -------------------------------------------------------------------------------- /pkg/producers/mongodb/mongoProducer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/mongodb/mongoProducer_test.go -------------------------------------------------------------------------------- /pkg/producers/redis/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/redis/config.json.example -------------------------------------------------------------------------------- /pkg/producers/redis/jsonWriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/redis/jsonWriter.go -------------------------------------------------------------------------------- /pkg/producers/redis/jsonWriter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/redis/jsonWriter_test.go -------------------------------------------------------------------------------- /pkg/producers/redis/redisProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/redis/redisProducer.go -------------------------------------------------------------------------------- /pkg/producers/redis/redisProducer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/redis/redisProducer_test.go -------------------------------------------------------------------------------- /pkg/producers/s3/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/s3/config.json.example -------------------------------------------------------------------------------- /pkg/producers/s3/s3Producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/s3/s3Producer.go -------------------------------------------------------------------------------- /pkg/producers/server/JsonProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/server/JsonProducer.go -------------------------------------------------------------------------------- /pkg/producers/test/TestProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/test/TestProducer.go -------------------------------------------------------------------------------- /pkg/producers/wamp/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wamp/config.json.example -------------------------------------------------------------------------------- /pkg/producers/wamp/wampProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wamp/wampProducer.go -------------------------------------------------------------------------------- /pkg/producers/wamp/wampProducer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wamp/wampProducer_test.go -------------------------------------------------------------------------------- /pkg/producers/wamprpc/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wamprpc/config.json.example -------------------------------------------------------------------------------- /pkg/producers/wamprpc/wampRPCProducer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wamprpc/wampRPCProducer.go -------------------------------------------------------------------------------- /pkg/producers/wamprpc/wampRPCProducer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wamprpc/wampRPCProducer_test.go -------------------------------------------------------------------------------- /pkg/producers/wasm/wasm_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wasm/wasm_config.go -------------------------------------------------------------------------------- /pkg/producers/wasm/wasm_producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wasm/wasm_producer.go -------------------------------------------------------------------------------- /pkg/producers/wasm/wasm_producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wasm/wasm_producer_test.go -------------------------------------------------------------------------------- /pkg/producers/wasm/wasm_producer_test_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wasm/wasm_producer_test_function.go -------------------------------------------------------------------------------- /pkg/producers/wasm/wasm_producer_test_function.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/producers/wasm/wasm_producer_test_function.wasm -------------------------------------------------------------------------------- /pkg/tpl/tpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/tpl/tpl.go -------------------------------------------------------------------------------- /pkg/types/csv_product.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/csv_product.avsc -------------------------------------------------------------------------------- /pkg/types/csv_user.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/csv_user.avsc -------------------------------------------------------------------------------- /pkg/types/finance_stock_trade.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/finance_stock_trade.avsc -------------------------------------------------------------------------------- /pkg/types/fleetmgmt_description.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/fleetmgmt_description.avsc -------------------------------------------------------------------------------- /pkg/types/fleetmgmt_location.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/fleetmgmt_location.avsc -------------------------------------------------------------------------------- /pkg/types/fleetmgmt_sensor.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/fleetmgmt_sensor.avsc -------------------------------------------------------------------------------- /pkg/types/gaming_game.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/gaming_game.avsc -------------------------------------------------------------------------------- /pkg/types/gaming_player.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/gaming_player.avsc -------------------------------------------------------------------------------- /pkg/types/gaming_player_activity.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/gaming_player_activity.avsc -------------------------------------------------------------------------------- /pkg/types/genericstore_purchase.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/genericstore_purchase.avsc -------------------------------------------------------------------------------- /pkg/types/insurance_customer.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/insurance_customer.avsc -------------------------------------------------------------------------------- /pkg/types/insurance_customer_activity.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/insurance_customer_activity.avsc -------------------------------------------------------------------------------- /pkg/types/insurance_offer.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/insurance_offer.avsc -------------------------------------------------------------------------------- /pkg/types/inventorymgmt_inventory.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/inventorymgmt_inventory.avsc -------------------------------------------------------------------------------- /pkg/types/inventorymgmt_product.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/inventorymgmt_product.avsc -------------------------------------------------------------------------------- /pkg/types/iot_device_information.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/iot_device_information.avsc -------------------------------------------------------------------------------- /pkg/types/map_dumb_schema.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/map_dumb_schema.avsc -------------------------------------------------------------------------------- /pkg/types/marketing_campaign_finance.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/marketing_campaign_finance.avsc -------------------------------------------------------------------------------- /pkg/types/net_device.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/net_device.avsc -------------------------------------------------------------------------------- /pkg/types/payment_credit_card.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/payment_credit_card.avsc -------------------------------------------------------------------------------- /pkg/types/payment_transaction.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/payment_transaction.avsc -------------------------------------------------------------------------------- /pkg/types/payroll_bonus.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/payroll_bonus.avsc -------------------------------------------------------------------------------- /pkg/types/payroll_employee.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/payroll_employee.avsc -------------------------------------------------------------------------------- /pkg/types/payroll_employee_location.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/payroll_employee_location.avsc -------------------------------------------------------------------------------- /pkg/types/pizzastore_order.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/pizzastore_order.avsc -------------------------------------------------------------------------------- /pkg/types/pizzastore_order_cancelled.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/pizzastore_order_cancelled.avsc -------------------------------------------------------------------------------- /pkg/types/pizzastore_order_completed.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/pizzastore_order_completed.avsc -------------------------------------------------------------------------------- /pkg/types/shoestore_clickstream.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/shoestore_clickstream.avsc -------------------------------------------------------------------------------- /pkg/types/shoestore_customer.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/shoestore_customer.avsc -------------------------------------------------------------------------------- /pkg/types/shoestore_order.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/shoestore_order.avsc -------------------------------------------------------------------------------- /pkg/types/shoestore_shoe.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/shoestore_shoe.avsc -------------------------------------------------------------------------------- /pkg/types/shopping_order.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/shopping_order.avsc -------------------------------------------------------------------------------- /pkg/types/shopping_rating.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/shopping_rating.avsc -------------------------------------------------------------------------------- /pkg/types/siem_log.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/siem_log.avsc -------------------------------------------------------------------------------- /pkg/types/store.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/store.avsc -------------------------------------------------------------------------------- /pkg/types/syslog_log.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/syslog_log.avsc -------------------------------------------------------------------------------- /pkg/types/user.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/user.avsc -------------------------------------------------------------------------------- /pkg/types/users.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/users.avsc -------------------------------------------------------------------------------- /pkg/types/users_array_map.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/users_array_map.avsc -------------------------------------------------------------------------------- /pkg/types/webanalytics_clickstream.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/webanalytics_clickstream.avsc -------------------------------------------------------------------------------- /pkg/types/webanalytics_code.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/webanalytics_code.avsc -------------------------------------------------------------------------------- /pkg/types/webanalytics_page_view.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/webanalytics_page_view.avsc -------------------------------------------------------------------------------- /pkg/types/webanalytics_user.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/pkg/types/webanalytics_user.avsc -------------------------------------------------------------------------------- /rpm/jr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/rpm/jr.spec -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /templates/csv_product.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/csv_product.tpl -------------------------------------------------------------------------------- /templates/csv_user.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/csv_user.tpl -------------------------------------------------------------------------------- /templates/data/de/actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/actor -------------------------------------------------------------------------------- /templates/data/de/beer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/beer -------------------------------------------------------------------------------- /templates/data/de/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/city -------------------------------------------------------------------------------- /templates/data/de/director: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/director -------------------------------------------------------------------------------- /templates/data/de/film: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/film -------------------------------------------------------------------------------- /templates/data/de/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/movie -------------------------------------------------------------------------------- /templates/data/de/nameF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/nameF -------------------------------------------------------------------------------- /templates/data/de/nameM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/nameM -------------------------------------------------------------------------------- /templates/data/de/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/phone -------------------------------------------------------------------------------- /templates/data/de/street: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/street -------------------------------------------------------------------------------- /templates/data/de/surname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/surname -------------------------------------------------------------------------------- /templates/data/de/wine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/wine -------------------------------------------------------------------------------- /templates/data/de/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/de/zip -------------------------------------------------------------------------------- /templates/data/es/actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/actor -------------------------------------------------------------------------------- /templates/data/es/beer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/beer -------------------------------------------------------------------------------- /templates/data/es/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/city -------------------------------------------------------------------------------- /templates/data/es/director: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/director -------------------------------------------------------------------------------- /templates/data/es/film: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/film -------------------------------------------------------------------------------- /templates/data/es/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/movie -------------------------------------------------------------------------------- /templates/data/es/nameF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/nameF -------------------------------------------------------------------------------- /templates/data/es/nameM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/nameM -------------------------------------------------------------------------------- /templates/data/es/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/phone -------------------------------------------------------------------------------- /templates/data/es/street: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/street -------------------------------------------------------------------------------- /templates/data/es/surname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/surname -------------------------------------------------------------------------------- /templates/data/es/wine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/wine -------------------------------------------------------------------------------- /templates/data/es/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/es/zip -------------------------------------------------------------------------------- /templates/data/fr/actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/actor -------------------------------------------------------------------------------- /templates/data/fr/beer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/beer -------------------------------------------------------------------------------- /templates/data/fr/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/city -------------------------------------------------------------------------------- /templates/data/fr/director: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/director -------------------------------------------------------------------------------- /templates/data/fr/film: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/film -------------------------------------------------------------------------------- /templates/data/fr/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/movie -------------------------------------------------------------------------------- /templates/data/fr/nameF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/nameF -------------------------------------------------------------------------------- /templates/data/fr/nameM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/nameM -------------------------------------------------------------------------------- /templates/data/fr/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/phone -------------------------------------------------------------------------------- /templates/data/fr/street: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/street -------------------------------------------------------------------------------- /templates/data/fr/surname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/surname -------------------------------------------------------------------------------- /templates/data/fr/wine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/wine -------------------------------------------------------------------------------- /templates/data/fr/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/fr/zip -------------------------------------------------------------------------------- /templates/data/it/actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/actor -------------------------------------------------------------------------------- /templates/data/it/beer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/beer -------------------------------------------------------------------------------- /templates/data/it/capital: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/capital -------------------------------------------------------------------------------- /templates/data/it/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/city -------------------------------------------------------------------------------- /templates/data/it/director: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/director -------------------------------------------------------------------------------- /templates/data/it/film: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/film -------------------------------------------------------------------------------- /templates/data/it/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/movie -------------------------------------------------------------------------------- /templates/data/it/nameF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/nameF -------------------------------------------------------------------------------- /templates/data/it/nameM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/nameM -------------------------------------------------------------------------------- /templates/data/it/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/phone -------------------------------------------------------------------------------- /templates/data/it/regione: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/regione -------------------------------------------------------------------------------- /templates/data/it/street: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/street -------------------------------------------------------------------------------- /templates/data/it/surname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/surname -------------------------------------------------------------------------------- /templates/data/it/wine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/wine -------------------------------------------------------------------------------- /templates/data/it/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/it/zip -------------------------------------------------------------------------------- /templates/data/uk/actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/actor -------------------------------------------------------------------------------- /templates/data/uk/beer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/beer -------------------------------------------------------------------------------- /templates/data/uk/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/city -------------------------------------------------------------------------------- /templates/data/uk/director: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/director -------------------------------------------------------------------------------- /templates/data/uk/film: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/film -------------------------------------------------------------------------------- /templates/data/uk/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/movie -------------------------------------------------------------------------------- /templates/data/uk/nameF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/nameF -------------------------------------------------------------------------------- /templates/data/uk/nameM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/nameM -------------------------------------------------------------------------------- /templates/data/uk/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/phone -------------------------------------------------------------------------------- /templates/data/uk/street: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/street -------------------------------------------------------------------------------- /templates/data/uk/surname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/surname -------------------------------------------------------------------------------- /templates/data/uk/wine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/wine -------------------------------------------------------------------------------- /templates/data/uk/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/uk/zip -------------------------------------------------------------------------------- /templates/data/us/actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/actor -------------------------------------------------------------------------------- /templates/data/us/beer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/beer -------------------------------------------------------------------------------- /templates/data/us/capital: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/capital -------------------------------------------------------------------------------- /templates/data/us/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/city -------------------------------------------------------------------------------- /templates/data/us/company: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/company -------------------------------------------------------------------------------- /templates/data/us/cool_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/cool_name -------------------------------------------------------------------------------- /templates/data/us/country: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/country -------------------------------------------------------------------------------- /templates/data/us/country_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/country_code -------------------------------------------------------------------------------- /templates/data/us/director: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/director -------------------------------------------------------------------------------- /templates/data/us/mail_provider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/mail_provider -------------------------------------------------------------------------------- /templates/data/us/mobile_phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/mobile_phone -------------------------------------------------------------------------------- /templates/data/us/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/movie -------------------------------------------------------------------------------- /templates/data/us/nameF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/nameF -------------------------------------------------------------------------------- /templates/data/us/nameM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/nameM -------------------------------------------------------------------------------- /templates/data/us/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/phone -------------------------------------------------------------------------------- /templates/data/us/sport_brand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/sport_brand -------------------------------------------------------------------------------- /templates/data/us/state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/state -------------------------------------------------------------------------------- /templates/data/us/state_short: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/state_short -------------------------------------------------------------------------------- /templates/data/us/stock_symbol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/stock_symbol -------------------------------------------------------------------------------- /templates/data/us/street: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/street -------------------------------------------------------------------------------- /templates/data/us/surname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/surname -------------------------------------------------------------------------------- /templates/data/us/tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/tag -------------------------------------------------------------------------------- /templates/data/us/wine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/wine -------------------------------------------------------------------------------- /templates/data/us/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/data/us/zip -------------------------------------------------------------------------------- /templates/finance_stock_trade.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/finance_stock_trade.tpl -------------------------------------------------------------------------------- /templates/fleet_mgmt_sensors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/fleet_mgmt_sensors.tpl -------------------------------------------------------------------------------- /templates/fleetmgmt_description.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/fleetmgmt_description.tpl -------------------------------------------------------------------------------- /templates/fleetmgmt_location.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/fleetmgmt_location.tpl -------------------------------------------------------------------------------- /templates/fleetmgmt_sensor.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/fleetmgmt_sensor.tpl -------------------------------------------------------------------------------- /templates/gaming_game.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/gaming_game.tpl -------------------------------------------------------------------------------- /templates/gaming_player.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/gaming_player.tpl -------------------------------------------------------------------------------- /templates/gaming_player_activity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/gaming_player_activity.tpl -------------------------------------------------------------------------------- /templates/insurance_customer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/insurance_customer.tpl -------------------------------------------------------------------------------- /templates/insurance_customer_activity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/insurance_customer_activity.tpl -------------------------------------------------------------------------------- /templates/insurance_offer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/insurance_offer.tpl -------------------------------------------------------------------------------- /templates/inventorymgmt_inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/inventorymgmt_inventory.tpl -------------------------------------------------------------------------------- /templates/inventorymgmt_product.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/inventorymgmt_product.tpl -------------------------------------------------------------------------------- /templates/iot_device_information.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/iot_device_information.tpl -------------------------------------------------------------------------------- /templates/marketing_campaign_finance.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/marketing_campaign_finance.tpl -------------------------------------------------------------------------------- /templates/net_device.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/net_device.tpl -------------------------------------------------------------------------------- /templates/payment_credit_card.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/payment_credit_card.tpl -------------------------------------------------------------------------------- /templates/payment_transaction.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/payment_transaction.tpl -------------------------------------------------------------------------------- /templates/payroll_bonus.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/payroll_bonus.tpl -------------------------------------------------------------------------------- /templates/payroll_employee.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/payroll_employee.tpl -------------------------------------------------------------------------------- /templates/payroll_employee_location.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/payroll_employee_location.tpl -------------------------------------------------------------------------------- /templates/pizzastore_order.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/pizzastore_order.tpl -------------------------------------------------------------------------------- /templates/pizzastore_order_cancelled.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/pizzastore_order_cancelled.tpl -------------------------------------------------------------------------------- /templates/pizzastore_order_completed.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/pizzastore_order_completed.tpl -------------------------------------------------------------------------------- /templates/pizzastore_util.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/pizzastore_util.tpl -------------------------------------------------------------------------------- /templates/shoestore_clickstream.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/shoestore_clickstream.tpl -------------------------------------------------------------------------------- /templates/shoestore_customer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/shoestore_customer.tpl -------------------------------------------------------------------------------- /templates/shoestore_order.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/shoestore_order.tpl -------------------------------------------------------------------------------- /templates/shoestore_shoe.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/shoestore_shoe.tpl -------------------------------------------------------------------------------- /templates/shopping_order.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/shopping_order.tpl -------------------------------------------------------------------------------- /templates/shopping_purchase.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/shopping_purchase.tpl -------------------------------------------------------------------------------- /templates/shopping_rating.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/shopping_rating.tpl -------------------------------------------------------------------------------- /templates/siem_log.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/siem_log.tpl -------------------------------------------------------------------------------- /templates/store.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/store.tpl -------------------------------------------------------------------------------- /templates/syslog_log.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/syslog_log.tpl -------------------------------------------------------------------------------- /templates/user.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/user.tpl -------------------------------------------------------------------------------- /templates/user_with_key.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/user_with_key.tpl -------------------------------------------------------------------------------- /templates/users.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/users.tpl -------------------------------------------------------------------------------- /templates/users_array_map.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/users_array_map.tpl -------------------------------------------------------------------------------- /templates/util_ip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/util_ip.tpl -------------------------------------------------------------------------------- /templates/util_userid.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/util_userid.tpl -------------------------------------------------------------------------------- /templates/webanalytics_clickstream.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/webanalytics_clickstream.tpl -------------------------------------------------------------------------------- /templates/webanalytics_code.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/webanalytics_code.tpl -------------------------------------------------------------------------------- /templates/webanalytics_page_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/webanalytics_page_view.tpl -------------------------------------------------------------------------------- /templates/webanalytics_user.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/templates/webanalytics_user.tpl -------------------------------------------------------------------------------- /testRest.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/testRest.http -------------------------------------------------------------------------------- /testfiles/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/testfiles/polygon.geojson -------------------------------------------------------------------------------- /testfiles/polyline.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/testfiles/polyline.geojson -------------------------------------------------------------------------------- /testfiles/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrnd-io/jr/HEAD/testfiles/products.csv -------------------------------------------------------------------------------- /testfiles/test2.csv: -------------------------------------------------------------------------------- 1 | NAME, SURNAME 2 | John, Brown 3 | Mary, White -------------------------------------------------------------------------------- /testfiles/test3.csv: -------------------------------------------------------------------------------- 1 | NAME, SURNAME 2 | John, Brown 3 | Mary, White 4 | Anna, Green --------------------------------------------------------------------------------