So, I had a rouge Java instance preventing ElasticSearch from running I was able to remove with
ps aux | grep 'java'
kill -9 <PID>
But within Zammad when I click reports I get this error.
Unable to process GET request to elasticsearch URL 'http://zammad-elasticsearch:9200/zammad_production_ticket/_search'. Check the response and payload for detailed information:
Response:
#<UserAgent::Result:0x00007fd615a98fd8 @success=false, @body=nil, @data=nil, @code=0, @content_type=nil, @error="#<RuntimeError: Unable to process http call '#<Net::HTTPServiceUnavailable 503 Service Unavailable readbody=true>'>", @header=nil>
Payload:
{"size":0,"query":{"bool":{"must":[{"range":{"created_at":{"from":"2024-01-01T05:00:00Z","to":"2025-01-01T04:59:59Z"}}},{"bool":{"must":[{"bool":{"must_not":[{"term":{"state.name.keyword":"merged"}}]}}]}}]}},"aggs":{"time_buckets":{"date_histogram":{"field":"created_at","calendar_interval":"month","time_zone":"America/New_York"}}},"sort":[{"updated_at":{"order":"desc"}},"_score"]}
Payload size: 0M
Any idea what may cause this from within the app?