You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should redict k8s.container_logs (as an example integration datastream) to logs-*-* so that we can do the routing?
what to use for the routing rules for example for k8s.container_logs??
use container.image.name? distinguish the application from another. it contains also the repository name and the tag of the container image. you need to remove those parts if you want to use it. It would be great to be able to override this in case the same application is used for multiple purposes (eg. nginx ingress controller vs nginx web server. Hopefully in this case as well the output should look the same). You might want to split stdout from stderr and distinguish different stream to separate access_logs from error logs
you can't use pod.name since it is unique per namespace. For example within a daemont set, the pod name will have a k8s generated hash to make each instance unique.
you might allow the user to provide a well defined container label to do the routing
The text was updated successfully, but these errors were encountered:
logs-*-*
so that we can do the routing?The text was updated successfully, but these errors were encountered: