Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

What is a valid URL for validating Confluence is healthy?

Troy Moreland
Contributor
December 22, 2014

We want to run Confluence behind a reverse proxy.  In order to do so we need to tell the proxy what URL it can use to validate Confluence is running and healthy.  For JIRA there is a /status URL path for this but I haven't found anything for Confluence.

5 answers

1 accepted

3 votes
Answer accepted
Information Systems
Contributor
May 19, 2016

The test URL for Confluence is the same as the one for JIRA, http://host.domain.com/context/status (http://host.domain.com/wiki/status) this page returns a test string with status.

Deleted user January 30, 2017
Like Christian likes this
1 vote
Troy Moreland
Contributor
December 23, 2014

This seems to work as the URL for healthcheck:

/login.action?os_destination=%2Fdashboard.action

 

Anyone think of a reason this isn't a good idea long term?

Alex Medved _ConfiForms_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 23, 2014

why not just /login.action ? why do you need to have a "redirect" to dashboard.action?

Troy Moreland
Contributor
December 23, 2014

That seemed to work as well! I was just copying what was in the browser URL at the time.

Daniel Ponzio
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 3, 2019

With companies integrating SSO / single-sign this URL sometimes won't be available - the best URL to use for this would be to add /status to your URL:  http://host.domain.com/wiki/status.

Like Franko I likes this
1 vote
rrudnicki
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 23, 2014

Hi Troy, 

 

Correct me if I'm wrong, but you want to check the Confluence's URL to check if it have failed, right? 

I believe the correct url to be used on this environment should be the external URL of Confluence.

You can use a monitoring software to check it for you since there isn't a native way to do it on Confluence. One software which do it is Nagios and another one is Zabbix.

Another simple way would be you create a script to ping the external URL of Confluence and check if it is answering or not. For example, a simple shell script would be like:

#!/bin/bash
DATA=`date +%d/%m/%Y`
HORA=`date +%H:%M`
ping -c 15 -w 30 http://confluence.your_domain.com
if [ $? -ne 1 ] ; then
echo "Link's up..." ; else
echo "Link's failed..."
mail -s "Link has failed at $DATA - $HORA" root@localhost < /root/warning
fi

 

Hope it helps, 

Renato Rudnicki

 

Alex Medved _ConfiForms_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 23, 2014

ping will not be 100% correct, as you may have your confluence behind apache or some other server (and confluence could be down, while front server is up)...

0 votes
Franko I
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 12, 2021

A question 6 years old, I still don't see proper solution.

Login page is not available when using SAML, redirection goes to SAML login.

Pity that confluence doesn't have some health page checking with some token, for example, gitlab (and some other services) are using that, and returning simple response "OK".

Very easy for monitoring purpose.

0 votes
Troy Moreland
Contributor
December 26, 2014

Well, this isn't answered after all! sad

Checking for "/login.action" only works after a successful login.  So I have to log into Confluence directly and then the health check starts working.

Doesn't this seem odd?

Alex Medved _ConfiForms_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 27, 2014

What do you mean "only works after a successful login"? The url does not require any authentication...

Troy Moreland
Contributor
January 6, 2015

Disregard. This was simply due to the fact that Confluence was starting properly only my test instance when the appliance restarted.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events