How to check how many rules are currently active in Adobe Launch? | Community
Skip to main content
Level 2
May 26, 2022
Solved

How to check how many rules are currently active in Adobe Launch?

  • May 26, 2022
  • 3 replies
  • 1591 views

Hi,

We are facing one of the biggest challenge in Adobe Launch is, how to check or observer list of rules that are currently live in production? Because we try to check the "RESOURCES UPSTREAM" options in recent published production library but "NO LUCK".

Can you please help us?

Thanks,

Vijay

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Alexis_Cazes_

Get the URL of your adobe launch library and remove .min and reload. Now you can see in clear all data elements, extensions and rules configured in production. You can even use some custom code to parse the library to extract the details you need.

 

Another way is to go to your developer tools and type _satellite._container

 

You will see property rules which will tell you how many rules are configured and their details.

The property dataElements will list all dataElements configured. (i.e: Object.keys(_satellite._container.dataElements).length)

 

You will also see the extensions deployed.

 

Hope this helps

 

3 replies

yuhuisg
Community Advisor
Community Advisor
May 26, 2022

Take a look at https://launch-parser.com. It can help you parse the production library and show all of the rules (and data elements and extensions) found in there. You can then count the number of rules that are in your library.

Charles_Thirupathi
Level 4
May 30, 2022

@vijayakumar_raju_cbe Instead of checking 'Resources Upstream' option in Recently Published Library, create new library just publish in Development or Staging then check the 'Resource Upstream' option in that Library it will give you the details of all the resources which are in LIVE.

Alexis_Cazes_
Alexis_Cazes_Accepted solution
Level 10
June 21, 2022

Get the URL of your adobe launch library and remove .min and reload. Now you can see in clear all data elements, extensions and rules configured in production. You can even use some custom code to parse the library to extract the details you need.

 

Another way is to go to your developer tools and type _satellite._container

 

You will see property rules which will tell you how many rules are configured and their details.

The property dataElements will list all dataElements configured. (i.e: Object.keys(_satellite._container.dataElements).length)

 

You will also see the extensions deployed.

 

Hope this helps