Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7871327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T01:52:12+00:00 2026-06-03T01:52:12+00:00

We are running a rails project behind haproxy. There is a keep-alive sent to

  • 0

We are running a rails project behind haproxy. There is a keep-alive sent to the application every second. This is causing very noisy log files which makes it a bit of a pain to dig through and is making them unnecessarily large.

My first thought was to change the logging level for that action to debug, but someone else proposed changing the logging level in an around_filter. I am not crazy about that idea, but it could just be how I implemented it. I am open to different solutions, but the general requirements are that I can quiet those actions, but I could change the logging level if I needed to see them for whatever reason.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T01:52:14+00:00Added an answer on June 3, 2026 at 1:52 am

    Another solution is to insert some Rack middleware which handles the keep-alive check before it gets to the Rails ApplicationController lifecycle.

    Step 1: make some middleware which respondes to the keep-alive check. In my example the keep-alive request is a GET /health-check so it would look like:

    class HealthCheckMiddleware
      def initialize(app)
        @app = app
      end
    
      def call(env)
        if env['PATH_INFO'] == '/health-check'
          return [200, {}, ['healthy']]
        end
        @app.call(env)
      end
    end
    

    Of course, adjust this health check as necessary. Maybe you need to check other Request / CGI variables…

    Step 2: make sure you insert this middleware before Rails::Rack::Logger:

    config.middleware.insert_before Rails::Rack::Logger, "HealthCheckMiddleware"
    

    Now your middleware will handle the health check and your logs have been totally by-passed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to get metric-fu running on a rails project I'm working with. Every
I am getting following error while running local script/server of my Rails project: This
I running a rails project and I am displaying a textfield that can often
When running Rails 3 RC with Ruby 1.9.2.rc2 under RVM I keep getting a
Running a rails site right now using SQLite3. About once every 500 requests or
I'm running Rails 2.3.4. When I create a new rails project, the public/index.html file
So I'm working on a new rails project which involves running multiple website from
Anyone else playing with ironruby? I have successfully got the IronRuby.Rails.Example project running on
I have a rails project running that defines the standard production:, :development and :test
I have been working on rails project, which had been made using noSql(Mongoid). Every

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.