-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ElasticSearchOutputWriter #90
Comments
Yes, it is perfectly reasonable. Elasticsearch clients for most languages talk to the REST API and do not use the Java based internal protocol.
Elasticsearch has an auto create mode for indices / mappings. If I remember correctly, that's even the default configuration. If the index / mapping used by jmxtrans will probably be simple enough that the auto mapping should work just fine. Explicitly creating the index / mapping would be nice, but not strictly required. |
You are right. I just watched how you did with InfluxDB and it seems good to have a minimalist API. |
Hello, I created a fork from your jmxtrans-agent to test the addon of Elastic It is inspired by your work with Jest API (come from ElasticOutputWriter into JmxTrans) and the work from @evgeniy-khist At the beginning I tried tu use Elastic Java Transport Client but I have a segmentation fault in JVM ! For the moment, it is nice with Jest. I prefer Jest to Elastic Client Rest. My fork is not ended (tests to do but I will use these days). Thanks ! |
Follow-up on the email thread "Elastichsearch output writer strategies" initiated by @zepouet .
https://groups.google.com/forum/#!topic/jmxtrans/jIyYctTW2go
It would be nice to have an ElasticSearchOutputWriter.
ElasticSearch Data Structure
ElasticSearchOutputWriter
have a configurable index name capable of using SimpleDateFormat to add a temporal element in the index name. Default valuejmxtrans-%{yyyy.MM.dd}
. See hereElasticSearch Client and Protocol
The text was updated successfully, but these errors were encountered: