Ivan Skriabin
Ivan Skriabin
We have three systems where logs are sent: our internal ELK stack, NewRelic and Airbrake. Some of our endpoints send errors to all of this systems, some endpoints send errors...
My php service generates a very big list of items. I decided to stream items on the fly as they are generated to save memory. I implemented response body as...
The filtering reject value example at https://api.jquery.com/deferred.then/ is not valid since jQuery became Promises/A+ compatible. I guess the description of .then() method should also be updated
We are uploading logs to S3. Another consumer periodically collects those file. Consumer expects that most recently uploaded files appears last in the file list when sorted by name. So...
What is the point of adding a `.part#{counter}.` to the temporary file name? It is already unique, since it includes `#{SecureRandom.uuid}` https://github.com/logstash-plugins/logstash-output-s3/blob/408a814a4b205275ffad63de5b5dfcaf65163817/lib/logstash/outputs/s3/temporary_file_factory.rb#L72
In addition to 'forwarders' there is a 'forward' option, which can take values *first* (default) or *only* (usefull if you want a forward-only dns server)
When implementing custom authentication methods (for example, via social networks) it is sometimes desirable to manually log in the user. This is done via manually creating token and storing it...