| Name | Spy |
| Version | v1.0.0 |
| GitHub | weeve-modules/spy |
| Authors | Jakub Grzelak |
Debugging module displaying all data passing through it in the logs. This module shows only 3 logs:
info severity level)Data send.This module does not have any module specific configuration.
Other features required for establishing the inter-container communication between modules in a data service are set by weeve agent.
| Environment Variables | type | Description |
|---|---|---|
| MODULE_NAME | string | Name of the module |
| MODULE_TYPE | string | Type of the module (Input, Processing, Output) |
| EGRESS_URLS | string | HTTP ReST endpoints for the next module |
| INGRESS_HOST | string | Host to which data will be received |
| INGRESS_PORT | string | Port to which data will be received |
bottle
requests
Input to this module is:
{
"label-1": 12,
"label-2": "speed"
}
[
{
"label-1": 12,
"label-2": "speed"
},
{
"label-1": 15,
"label-2": "volume"
}
]
Output of this module is exactly the same as the input:
{
"label-1": 12,
"label-2": "speed"
}
[
{
"label-1": 12,
"label-2": "speed"
},
{
"label-1": 15,
"label-2": "volume"
}
]
Content type
Image
Digest
sha256:840a83326…
Size
48.4 MB
Last updated
over 3 years ago
docker pull weevenetwork/spy:v1.0.1