app-service-configurable metrics-influxdb does not recieve metrics as corresponding redis key does not exist #245
-
I am trying to use app-service-configurable with the metrics-influxdb profile to push data to InfluxDB. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 8 replies
-
@b4zs What is the EdgeX version? and any details about your environment?such as: app configuration, InfluxDB configuration, ... |
Beta Was this translation helpful? Give feedback.
-
@b4zs , Edgex uses Redis Pub/Sub not Streams. The topics will not show up in keys.
See link above. You should be able to subscribe via the CLI using PSUBSCRIBE to Note the change in syntaxe for level separator and wildcard when using the Redis CLI |
Beta Was this translation helpful? Give feedback.
-
You
I have attached the compose file from running |
Beta Was this translation helpful? Give feedback.
-
MQTT Export works because it is receiving |
Beta Was this translation helpful? Give feedback.
-
I managed to get metrics logging to work using the provided documentation. I completely missed the corresponding part for this configuration. Thank you for your patient support. I realized that I did not provide sufficient information on my use case and configuration. Details: Now that I added
Also, the app-metrics-influxdb service is able to send these metrics to InfluxDB:
The data shows up in InfluxDB, thus my requirements are met. Thank you. |
Beta Was this translation helpful? Give feedback.
You don't have any metrics data being published. Have you enabled any of the metrics? They are all disabled by defaults.
https://docs.edgexfoundry.org/3.1/microservices/general/#service-metrics
Which service are you wanting the service metrics from?
There are a few common security metrics
https://docs.edgexfoundry.org/3.1/microservices/configuration/CommonConfiguration/#common-configuration-properties
The rest are App Service, Device Service or service specific. See Writable.Telemetry tab at following links
https://docs.edgexfoundry.org/3.1/microservices/application/GeneralAppServiceConfig/
https://docs.edgexfoundry.org/3.1/microservices/device/Ch-DeviceServices/#configuration-properties
h…