英文:
Linode Exporter in Opentelemetry Collector
问题
There is no Linode Exporter that can be used in the opentelemetry collector. The error message indicates that "linode" isn't a valid exporter.
英文:
Is there a Linode Exporter that i can use in the opentelemetry collector?. I want to use it to export logs into Linode Object storage.
I tried configuring the exporter in the configuration file as follows:
exporters:
linode:
access_key: "<my-access-key>"
secret_key: "<my-secret-key>"
bucket_name: "logs-store"
object_key_prefix: "logs/"
endpoint: "http://logs-store.ap-south-1.linodeobjects.com"
But when i deploy the collector on a kubernetes cluster, the pod goes into CrashLoopBackOff
state. I then checked the logs for the collector pod, It states that linode isn't a valid exporter.
答案1
得分: 1
目前尚无此导出器,但您可以关注S3导出器,鉴于其S3兼容性,您应该能够使用它。
英文:
There is currently no such exporter but you could keep an eye on the S3 exporter that you should be able to use, given the S3 compatibility.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论