├── README.adoc ├── aggregatorservice ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs ├── pom.xml └── src │ └── main │ ├── java │ └── io │ │ └── pivotal │ │ └── data │ │ └── aggregatorservice │ │ ├── App.java │ │ ├── controller │ │ └── AggregatorServiceController.java │ │ ├── model │ │ ├── DriverIncorrectData.java │ │ ├── DriverRevenueData.java │ │ └── RouteData.java │ │ └── service │ │ └── AggregatorService.java │ └── resources │ └── application.yml ├── eventservice ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs ├── pom.xml └── src │ └── main │ ├── java │ └── io │ │ └── pivotal │ │ └── data │ │ └── eventservice │ │ ├── App.java │ │ ├── controllers │ │ └── EventMetricsController.java │ │ └── services │ │ └── EventsService.java │ └── resources │ ├── application.yml │ └── redis-bean.xml ├── images ├── app_microservices.png ├── circuit_breaker.pdf ├── data_microservices.png ├── problemstmt.jpg ├── service_registry.pdf ├── solution_architecture_1.png ├── stream_definition.png ├── streaming_img1.png ├── streaming_img2.png └── streaming_img3.png ├── manifest-aggservice.yml ├── manifest-eventservice.yml ├── manifest-scdf.yml ├── manifest-taxiservice.yml ├── pom.xml ├── rxjava-taxi-processor ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── demo │ │ │ │ ├── RxJavaApplication.java │ │ │ │ ├── RxJavaTransformer.java │ │ │ │ └── model │ │ │ │ ├── EventData.java │ │ │ │ ├── EventDataCollection.java │ │ │ │ └── FreeTaxiData.java │ │ └── resources │ │ │ └── application.yml │ └── test │ │ └── java │ │ └── demo │ │ └── ModuleApplicationTests.java └── staticdir │ ├── Staticfile │ └── manifest.yml ├── taxiservice ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs ├── pom.xml └── src │ └── main │ ├── java │ └── io │ │ └── pivotal │ │ └── data │ │ └── taxiservice │ │ ├── App.java │ │ ├── controller │ │ └── TaxiServiceController.java │ │ ├── models │ │ └── RouteData.java │ │ └── services │ │ └── TaxiService.java │ └── resources │ ├── application.yml │ └── redis-bean.xml └── webapp_php ├── .bp-config └── options.json ├── Pivotal-Logo.jpg ├── app_microservices.png ├── data_microservices.png ├── freetaxiesandroutes.html ├── getTaxiData.php ├── index.html ├── manifest.yml ├── problemstmt.jpg ├── sampledata.html ├── solarchitect.png └── taxidata.html /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/README.adoc -------------------------------------------------------------------------------- /aggregatorservice/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/.classpath -------------------------------------------------------------------------------- /aggregatorservice/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /aggregatorservice/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/.project -------------------------------------------------------------------------------- /aggregatorservice/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /aggregatorservice/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /aggregatorservice/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /aggregatorservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/pom.xml -------------------------------------------------------------------------------- /aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/App.java -------------------------------------------------------------------------------- /aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/controller/AggregatorServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/controller/AggregatorServiceController.java -------------------------------------------------------------------------------- /aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/model/DriverIncorrectData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/model/DriverIncorrectData.java -------------------------------------------------------------------------------- /aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/model/DriverRevenueData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/model/DriverRevenueData.java -------------------------------------------------------------------------------- /aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/model/RouteData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/model/RouteData.java -------------------------------------------------------------------------------- /aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/service/AggregatorService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/src/main/java/io/pivotal/data/aggregatorservice/service/AggregatorService.java -------------------------------------------------------------------------------- /aggregatorservice/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/aggregatorservice/src/main/resources/application.yml -------------------------------------------------------------------------------- /eventservice/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/.classpath -------------------------------------------------------------------------------- /eventservice/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/.project -------------------------------------------------------------------------------- /eventservice/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /eventservice/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /eventservice/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /eventservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/pom.xml -------------------------------------------------------------------------------- /eventservice/src/main/java/io/pivotal/data/eventservice/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/src/main/java/io/pivotal/data/eventservice/App.java -------------------------------------------------------------------------------- /eventservice/src/main/java/io/pivotal/data/eventservice/controllers/EventMetricsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/src/main/java/io/pivotal/data/eventservice/controllers/EventMetricsController.java -------------------------------------------------------------------------------- /eventservice/src/main/java/io/pivotal/data/eventservice/services/EventsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/src/main/java/io/pivotal/data/eventservice/services/EventsService.java -------------------------------------------------------------------------------- /eventservice/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/src/main/resources/application.yml -------------------------------------------------------------------------------- /eventservice/src/main/resources/redis-bean.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/eventservice/src/main/resources/redis-bean.xml -------------------------------------------------------------------------------- /images/app_microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/app_microservices.png -------------------------------------------------------------------------------- /images/circuit_breaker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/circuit_breaker.pdf -------------------------------------------------------------------------------- /images/data_microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/data_microservices.png -------------------------------------------------------------------------------- /images/problemstmt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/problemstmt.jpg -------------------------------------------------------------------------------- /images/service_registry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/service_registry.pdf -------------------------------------------------------------------------------- /images/solution_architecture_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/solution_architecture_1.png -------------------------------------------------------------------------------- /images/stream_definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/stream_definition.png -------------------------------------------------------------------------------- /images/streaming_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/streaming_img1.png -------------------------------------------------------------------------------- /images/streaming_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/streaming_img2.png -------------------------------------------------------------------------------- /images/streaming_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/images/streaming_img3.png -------------------------------------------------------------------------------- /manifest-aggservice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/manifest-aggservice.yml -------------------------------------------------------------------------------- /manifest-eventservice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/manifest-eventservice.yml -------------------------------------------------------------------------------- /manifest-scdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/manifest-scdf.yml -------------------------------------------------------------------------------- /manifest-taxiservice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/manifest-taxiservice.yml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/pom.xml -------------------------------------------------------------------------------- /rxjava-taxi-processor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/pom.xml -------------------------------------------------------------------------------- /rxjava-taxi-processor/src/main/java/demo/RxJavaApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/src/main/java/demo/RxJavaApplication.java -------------------------------------------------------------------------------- /rxjava-taxi-processor/src/main/java/demo/RxJavaTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/src/main/java/demo/RxJavaTransformer.java -------------------------------------------------------------------------------- /rxjava-taxi-processor/src/main/java/demo/model/EventData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/src/main/java/demo/model/EventData.java -------------------------------------------------------------------------------- /rxjava-taxi-processor/src/main/java/demo/model/EventDataCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/src/main/java/demo/model/EventDataCollection.java -------------------------------------------------------------------------------- /rxjava-taxi-processor/src/main/java/demo/model/FreeTaxiData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/src/main/java/demo/model/FreeTaxiData.java -------------------------------------------------------------------------------- /rxjava-taxi-processor/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/src/main/resources/application.yml -------------------------------------------------------------------------------- /rxjava-taxi-processor/src/test/java/demo/ModuleApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/src/test/java/demo/ModuleApplicationTests.java -------------------------------------------------------------------------------- /rxjava-taxi-processor/staticdir/Staticfile: -------------------------------------------------------------------------------- 1 | directory: visible 2 | -------------------------------------------------------------------------------- /rxjava-taxi-processor/staticdir/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/rxjava-taxi-processor/staticdir/manifest.yml -------------------------------------------------------------------------------- /taxiservice/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/.classpath -------------------------------------------------------------------------------- /taxiservice/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /taxiservice/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/.project -------------------------------------------------------------------------------- /taxiservice/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /taxiservice/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /taxiservice/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /taxiservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/pom.xml -------------------------------------------------------------------------------- /taxiservice/src/main/java/io/pivotal/data/taxiservice/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/src/main/java/io/pivotal/data/taxiservice/App.java -------------------------------------------------------------------------------- /taxiservice/src/main/java/io/pivotal/data/taxiservice/controller/TaxiServiceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/src/main/java/io/pivotal/data/taxiservice/controller/TaxiServiceController.java -------------------------------------------------------------------------------- /taxiservice/src/main/java/io/pivotal/data/taxiservice/models/RouteData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/src/main/java/io/pivotal/data/taxiservice/models/RouteData.java -------------------------------------------------------------------------------- /taxiservice/src/main/java/io/pivotal/data/taxiservice/services/TaxiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/src/main/java/io/pivotal/data/taxiservice/services/TaxiService.java -------------------------------------------------------------------------------- /taxiservice/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/src/main/resources/application.yml -------------------------------------------------------------------------------- /taxiservice/src/main/resources/redis-bean.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/taxiservice/src/main/resources/redis-bean.xml -------------------------------------------------------------------------------- /webapp_php/.bp-config/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/.bp-config/options.json -------------------------------------------------------------------------------- /webapp_php/Pivotal-Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/Pivotal-Logo.jpg -------------------------------------------------------------------------------- /webapp_php/app_microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/app_microservices.png -------------------------------------------------------------------------------- /webapp_php/data_microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/data_microservices.png -------------------------------------------------------------------------------- /webapp_php/freetaxiesandroutes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/freetaxiesandroutes.html -------------------------------------------------------------------------------- /webapp_php/getTaxiData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/getTaxiData.php -------------------------------------------------------------------------------- /webapp_php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/index.html -------------------------------------------------------------------------------- /webapp_php/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/manifest.yml -------------------------------------------------------------------------------- /webapp_php/problemstmt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/problemstmt.jpg -------------------------------------------------------------------------------- /webapp_php/sampledata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/sampledata.html -------------------------------------------------------------------------------- /webapp_php/solarchitect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/solarchitect.png -------------------------------------------------------------------------------- /webapp_php/taxidata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgshukla/Realtime-Streaming-DataMicroservices-AppMicroservices/HEAD/webapp_php/taxidata.html --------------------------------------------------------------------------------