I can't find the domain where I have "Load Balancing" activated

I can’t find the domain where I have “Load Balancing” activated.
Can you help me? Thank you

Were you able to locate this?

Please go to Overview->Traffic and click on Load Balancing. Alternatively, please open a support ticket or let us know of you have one already open so we can follow up there as well.
Thanks.

1 Like

Thank you form your answer, but I have 148 domains and I can’t search one by one

Perhaps you need to write your own script to retrieve the list of domains via API, and then loop through each of the domain and see which domain has the load balancing subscription.

1 Like

Jajaja it’s a joke?

So you opened a Support ticket, as suggested? Please post the ticket # here to make it easier to locate.

2226379
Thank you

1 Like

You can laugh at my bash skills if you want.

#!/bin/bash
auth_email="FILL IN HERE"
auth_key="FILL IN HERE"

zone_list=( $(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/?per_page=100" -H "X-Auth-Email: $auth_email" -H "X-Auth-Key: $auth_key" -H "Content-Type: application/json" | jq -r '.result[].id') )


for i in "${zone_list[@]}"
do
    curl -s -X GET "https://api.cloudflare.com/client/v4/zones/${i}/load_balancers" -H "X-Auth-Email: $auth_email" -H "X-Auth-Key: $auth_key" -H "Content-Type: application/json" | jq -r '.result[].name'
done

Pagination will have to be added yourself, but this should give you a start.

3 Likes

Thanks for the script Michael
I have applied it but it does not show me any loadbalancer
Could it be a billing error? I would then ask for a refund.

@gloria is keeping an eye on this, and @Laurie might also be checking ticket #2226379

Hi @sdayman,

Load Balancing is an account level subscription, so it is not associated with only one domain. I reopened and escalated the ticket since it received the auto response and was not replied to.

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.