I'd say go ahead and save all of that information in ElasticSearch ONLY if you can secure the database somehow. AFAIK, ES doesn't support any method of securing the application through authentication, keys, etc. So, if you can't secure that data, you sure don't want to put any of the user login details in there.
In my application, I've blocked port access to my ES instance to localhost only. Then, I've built a service layer on top of ES in node.js. All of my authentication is handled before I get to the data layer.
One thing about ES is that more data doesn't necessarily slow down the queries unless you're indexing all of that data or querying against it. If you just need to retrieve that data, then you can always grab the "_source" document. Make sure you have the disc space to handle your data, but other than that, I'd say save it all - and be strategic in what you index and how.