-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
55 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# TemperatureSensors | ||
This sample shows how to use a [Background worker](./SensorsFakeProducer.cs) to publish `ReadingReceived` for each temperature sensor. Two GET endpoints are exposed to retrieve the list of available sensors and its relative details. | ||
|
||
The list of available sensors can be retrieved via GET request at `/sensors`: | ||
![Sensors list](../../docs/assets/sensors.jpg) | ||
|
||
Sensor-specific details can be pulled via GET request at `/sensors/[sensor ID]`: | ||
![Sensor details](../../docs/assets/sensor_details.jpg) | ||
|
||
When querying for a sensor's details, the list of events for that stream is pulled from the API in backward order (newest first) and aggregated to calculate the average temperature. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters