Cards, Dashboards, Stories

Cards, Dashboards, Stories

Is there a way to track which DOMO assets (cards, datasets, dataflow, etc) uses a specific field?

Member

We found the Card Fields & Beast Modes Governance dataset which shows what fields are being used in cards and beast modes but we would like to track a field name from it's original dataset > name change (if it applies) > DOMO asset.

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In

Best Answers

  • Coach
    Answer ✓

    There isn't a specific dataset that would track this information. You'd have to get the card definition yourself to see if there is a field rename happening utilizing something like the java CLI with the backup-card command but that will only get your the JSON definition in a file and not as a dataset.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Coach
    Answer ✓

    Good question @Jarren. Expanding on what Grant suggested, you might be able to poll Domo via Python or other method. Something like this would give you a list of things affected by a rename.

    1. import requests
    2. import json


    3. # Replace with your Domo credentials and API endpoints
    4.  
    5. client_id = 'YOUR_CLIENT_ID'
    6. client_secret = 'YOUR_CLIENT_SECRET'
    7. api_url = 'https://api.domo.com/v1/'


    8. def get_access_token(client_id, client_secret):
    9. auth_url = 'https://api.domo.com/oauth/token?grant_type=client_credentials'
    10. response = requests.post(auth_url, auth=(client_id, client_secret))
    11. response_data = response.json()
    12. return response_data['access_token']


    13. def get_datasets(access_token):
    14. datasets_url = f'{api_url}datasets'
    15. headers = {'Authorization': f'Bearer {access_token}'}
    16. response = requests.get(datasets_url, headers=headers)
    17. return response.json()


    18. def get_cards(access_token):
    19. cards_url = f'{api_url}cards'
    20. headers = {'Authorization': f'Bearer {access_token}'}
    21. response = requests.get(cards_url, headers=headers)
    22. return response.json()


    23. def get_beast_modes(access_token):
    24. beast_modes_url = f'{api_url}beastmodes'
    25. headers = {'Authorization': f'Bearer {access_token}'}
    26. response = requests.get(beast_modes_url, headers=headers)
    27. return response.json()


    28. def find_field_usage(field_name, datasets, cards, beast_modes):
    29. # Check datasets
    30. for dataset in datasets['data']:
    31. dataset_id = dataset['id']
    32. # Assume you have a way to fetch dataset schema
    33. schema = get_dataset_schema(access_token, dataset_id)
    34. for field in schema['fields']:
    35. if field['name'] == field_name:
    36. print(f'Field {field_name} found in dataset {dataset_id}')

    37. # Check cards and beast modes similarly
    38. # ...


    39. def main():
    40. access_token = get_access_token(client_id, client_secret)

    41. datasets = get_datasets(access_token)
    42. cards = get_cards(access_token)
    43. beast_modes = get_beast_modes(access_token)

    44. field_name = 'your_field_name'
    45. find_field_usage(field_name, datasets, cards, beast_modes)


    46. if __name__ == '__main__':
    47. main()

    ** Was this post helpful? Click Agree or Like below. **
    ** Did this solve your problem? Accept it as a solution! **

Answers

  • Coach
    Answer ✓

    There isn't a specific dataset that would track this information. You'd have to get the card definition yourself to see if there is a field rename happening utilizing something like the java CLI with the backup-card command but that will only get your the JSON definition in a file and not as a dataset.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Member

    Thanks for the response @GrantSmith

  • Coach
    Answer ✓

    Good question @Jarren. Expanding on what Grant suggested, you might be able to poll Domo via Python or other method. Something like this would give you a list of things affected by a rename.

    1. import requests
    2. import json


    3. # Replace with your Domo credentials and API endpoints
    4.  
    5. client_id = 'YOUR_CLIENT_ID'
    6. client_secret = 'YOUR_CLIENT_SECRET'
    7. api_url = 'https://api.domo.com/v1/'


    8. def get_access_token(client_id, client_secret):
    9. auth_url = 'https://api.domo.com/oauth/token?grant_type=client_credentials'
    10. response = requests.post(auth_url, auth=(client_id, client_secret))
    11. response_data = response.json()
    12. return response_data['access_token']


    13. def get_datasets(access_token):
    14. datasets_url = f'{api_url}datasets'
    15. headers = {'Authorization': f'Bearer {access_token}'}
    16. response = requests.get(datasets_url, headers=headers)
    17. return response.json()


    18. def get_cards(access_token):
    19. cards_url = f'{api_url}cards'
    20. headers = {'Authorization': f'Bearer {access_token}'}
    21. response = requests.get(cards_url, headers=headers)
    22. return response.json()


    23. def get_beast_modes(access_token):
    24. beast_modes_url = f'{api_url}beastmodes'
    25. headers = {'Authorization': f'Bearer {access_token}'}
    26. response = requests.get(beast_modes_url, headers=headers)
    27. return response.json()


    28. def find_field_usage(field_name, datasets, cards, beast_modes):
    29. # Check datasets
    30. for dataset in datasets['data']:
    31. dataset_id = dataset['id']
    32. # Assume you have a way to fetch dataset schema
    33. schema = get_dataset_schema(access_token, dataset_id)
    34. for field in schema['fields']:
    35. if field['name'] == field_name:
    36. print(f'Field {field_name} found in dataset {dataset_id}')

    37. # Check cards and beast modes similarly
    38. # ...


    39. def main():
    40. access_token = get_access_token(client_id, client_secret)

    41. datasets = get_datasets(access_token)
    42. cards = get_cards(access_token)
    43. beast_modes = get_beast_modes(access_token)

    44. field_name = 'your_field_name'
    45. find_field_usage(field_name, datasets, cards, beast_modes)


    46. if __name__ == '__main__':
    47. main()

    ** Was this post helpful? Click Agree or Like below. **
    ** Did this solve your problem? Accept it as a solution! **

  • Member

    Wow! Thanks @ArborRose! I'll give this a try

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In