Arian Faurtosh
Arian Faurtosh
Like so: ```strings "\".\" Shortcut" = "„.“ Kurzbefehl"; ``` This fails the key value checker: ```ruby def key_value_pair? !!(/^\s*"([^"]+)"\s*=/.match(content)) end ``` and results to the key-value output being `nil`
A few things should be updated for the relative_url_root docs. https://guides.rubyonrails.org/configuring.html#deploy-to-a-subdirectory-relative-url-root > Firstly, regarding your point about `config.action_controller.relative_url_root` - that's what the configuration used to be called in earlier versions...
`timestamp` should be the first thing in the hash, given that splunk will only parse by default the first 128 characters of a json [MAX_TIMESTAMP_LOOKAHEAD default is 128](https://docs.splunk.com/Documentation/SplunkCloud/latest/Data/Configuretimestamprecognition) Since message...
Ruby Logger supports `shift_age` and `shift_size` https://ruby-doc.org/stdlib-2.4.0/libdoc/logger/rdoc/Logger.html#method-c-new Anyway to use those properties within a configuration? ```ruby { type: :file, path: 'log/production.log', shift_size: 1, shift_age: 1000, sync: true, formatter: ActiveSupport::Logger::SimpleFormatter },...
Is there anyway to have one of the outputs filter out Personally identifiable information, while having the other output have no filtering? ```ruby multi_logger = LogStashLogger.new( type: :multi_logger, outputs: [...
When you use the `formatter: ::Logger::Formatter` the output does not prepend the `config.log_tags`. What's interesting is the `LogStashLogger::Formatter::*` all include `"tags":["127.0.0.1"]` in the output.
Our Redis cluster is comprised of many Redis instances, and we have code that is able to pull the designated leader of the Redis Cluster. However, sometimes when our Redis...
Current documentation here is a bit lacking: https://github.com/puma/puma/blob/master/docs/kubernetes.md What is the best practice for running puma within a Kubernetes pod? Do you want a high amount of workers per pod?...
I have a `.rubocop.yml` file that has a link out to a shared style guide for all our projects. But am unable to find a place to put a CA...
Our Kube cluster has a rate limit for talking with kube. We get this error when querying too many pods: `❌ could not reach provider: 429 Too Many Requests: {"error":"too...