Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tables are empty #21

Closed
daviewales opened this issue Jun 17, 2024 · 12 comments · Fixed by #22
Closed

Tables are empty #21

daviewales opened this issue Jun 17, 2024 · 12 comments · Fixed by #22
Labels
bug Something isn't working

Comments

@daviewales
Copy link

Describe the bug
Tables are empty.

Steampipe version (steampipe -v)
v0.23.2

Plugin version (steampipe plugin list)
0.2.0

To reproduce
Set and export TRELLO_TOKEN and TRELLO_API_KEY variables:

read -rs TRELLO_TOKEN
read -rs TRELLO_API_KEY
export TRELLO_TOKEN
export TRELLO_API_KEY

Then query trello_board:

steampipe query "select name from trello_board"
+------+
| name |
+------+
+------+

Expected behavior
Expected to see list of Trello boards.

Additional context
I'm reasonably confident I'm copying the correct key and token, following the Trello instructions.

I also tried setting them in the config file (~/.steampipe/config/trello.spc), but had the same result.

@daviewales daviewales added the bug Something isn't working label Jun 17, 2024
@misraved
Copy link
Contributor

Welcome to Steampipe @daviewales 👋 !!

I tried to reproduce the error without much success. I followed the steps mentioned in https://developer.atlassian.com/cloud/trello/guides/rest-api/authorization/ and generated a new API key along with the token.

Could you please send a snapshot of the ~/.steampipe/config/trello.spc file without the sensitive data?

@daviewales
Copy link
Author

Thanks @misraved, my config is just the default:

connection "trello" {
  plugin = "trello"

  # Trello API key for requests. Required.
  # See instructions at https://developer.atlassian.com/cloud/trello/guides/rest-api/authorization/
  # This can also be set via the `TRELLO_API_KEY` environment variable.
  # api_key = ""

  # Trello token for requests. Required.
  # This can also be set via the `TRELLO_TOKEN` environment variable.
  # token = ""  
}

@daviewales
Copy link
Author

I did some more testing. It works for my personal account, but not for my work account. Is there a way to enable debugging information so I can provide more details?

@daviewales
Copy link
Author

The other strange thing is that the token and key for my work account do work with py-trello. For example, the following code works with my work account tokens, assuming you have first run pip install py-trello:

import os
from trello import TrelloClient

api_key = os.getenv('TRELLO_API_KEY')
token = os.getenv('TRELLO_TOKEN')

client = TrelloClient(api_key=api_key, token=token)
print(client.list_boards())

But the same credentials return an empty table when I run:

steampipe query "select name from trello_board"

@daviewales
Copy link
Author

I found the log files. I get the following error message when running the above query on my work account:

2024-06-18 00:03:55.316 UTC [ERROR] steampipe-plugin-trello.plugin: [ERROR] 1718669033199: trello_my_organization.listMyOrganizations: api_error=<nil>

@daviewales
Copy link
Author

I found STEAMPIPE_LOG_LEVEL=TRACE. Here are the full logs for the following command:

STEAMPIPE_LOG_LEVEL=TRACE steampipe query "select name from trello_board"
2024-06-18 00:18:18.669 UTC [INFO]  starting plugin manager
2024-06-18 00:18:18.669 UTC [INFO]  ensureDefaultConfigFile
2024-06-18 00:18:18.669 UTC [INFO]  loadConfig is loading connection config
2024-06-18 00:18:18.669 UTC [INFO]  loadConfig calling initializePlugins
2024-06-18 00:18:18.669 UTC [TRACE] loaded config map: trello
2024-06-18 00:18:18.669 UTC [INFO]  NewPluginManager
2024-06-18 00:18:18.670 UTC [TRACE] PluginManager setPluginCacheSizeMap: 1 connection.
2024-06-18 00:18:18.670 UTC [TRACE] Total cache size 0Mb
2024-06-18 00:18:18.670 UTC [TRACE] SQLInfoMap >>> map[dbname:steampipe host:127.0.0.1 port:9193 user:root]
2024-06-18 00:18:18.670 UTC [TRACE] SQLInfoMap >>> map[dbname:steampipe host:127.0.0.1 port:9193 sslcert:/home/example/.steampipe/db/14.2.0/data/server.crt sslkey:/home/example/.steampipe/db/14.2.0/data/server.key sslmode:verify-ca sslrootcert:/home/example/.steampipe/db/14.2.0/data/root.crt user:root]
2024-06-18 00:18:18.670 UTC [TRACE] PSQLInfo >>> [sslmode=verify-ca sslrootcert=/home/example/.steampipe/db/14.2.0/data/root.crt sslcert=/home/example/.steampipe/db/14.2.0/data/server.crt sslkey=/home/example/.steampipe/db/14.2.0/data/server.key port=9193 user=root dbname=steampipe host=127.0.0.1]
2024-06-18 00:18:18.675 UTC [TRACE] Pinging
2024-06-18 00:18:18.682 UTC [TRACE] PluginManager Get 0xc000991140
2024-06-18 00:18:18.682 UTC [TRACE] PluginManager Get, connections: '[trello]'
2024-06-18 00:18:18.682 UTC [TRACE] PluginManager ensurePlugin hub.steampipe.io/plugins/turbot/trello@latest (0xc000991140)
2024-06-18 00:18:18.682 UTC [INFO]  plugin hub.steampipe.io/plugins/turbot/trello@latest NOT started or starting - start now (0xc000991140)
2024-06-18 00:18:18.682 UTC [DEBUG] startPlugin hub.steampipe.io/plugins/turbot/trello@latest (0xc000991140) start
2024-06-18 00:18:18.682 UTC [TRACE] add running plugin for hub.steampipe.io/plugins/turbot/trello@latest (if someone didn't beat us to it)
2024-06-18 00:18:18.683 UTC [INFO]  written running plugin to map
2024-06-18 00:18:18.683 UTC [INFO]  added running plugin (0xc000991140)
2024-06-18 00:18:18.683 UTC [INFO]  start plugin (0xc000991140)
2024-06-18 00:18:18.683 UTC [INFO]  ************ start plugin: hub.steampipe.io/plugins/turbot/trello@latest, label: hub.steampipe.io/plugins/turbot/trello@latest ********************
2024-06-18 00:18:18.683 UTC [INFO]  ************ plugin path /home/example/.steampipe/plugins/hub.steampipe.io/plugins/turbot/trello@latest/steampipe-plugin-trello.plugin ********************
2024-06-18 00:18:18.683 UTC [INFO]  Setting max memory for plugin 'hub.steampipe.io/plugins/turbot/trello@latest' to 1024 Mb
2024-06-18 00:18:18.683 UTC [DEBUG] starting plugin: path=/home/example/.steampipe/plugins/hub.steampipe.io/plugins/turbot/trello@latest/steampipe-plugin-trello.plugin args=["/home/example/.steampipe/plugins/hub.steampipe.io/plugins/turbot/trello@latest/steampipe-plugin-trello.plugin"]
2024-06-18 00:18:18.683 UTC [DEBUG] plugin started: path=/home/example/.steampipe/plugins/hub.steampipe.io/plugins/turbot/trello@latest/steampipe-plugin-trello.plugin pid=19572
2024-06-18 00:18:18.683 UTC [DEBUG] waiting for RPC address: plugin=/home/example/.steampipe/plugins/hub.steampipe.io/plugins/turbot/trello@latest/steampipe-plugin-trello.plugin
2024-06-18 00:18:18.699 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  Serve
2024-06-18 00:18:18.699 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  initialise plugin 'steampipe-plugin-trello', using sdk version 5.8.0
2024-06-18 00:18:18.699 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  GOMEMLIMIT=1073741824 (1024Mb)
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] defaulting SchemaMode to SchemaModeStatic
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] intialising DefaultGetConfig
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise (plugin default)
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: , IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] intialising defaultWatchedFilesChangedFunc
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] telemetry.Init service 'steampipe-plugin-trello', tracingEnabled: false, metricsEnabled: false
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] metrics and tracing disabled' - returning
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] FLUSHING instrumentation
2024-06-18 00:18:18.699 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] Shutdown instrumentation
2024-06-18 00:18:18.700 UTC [DEBUG] using plugin: version=0
2024-06-18 00:18:18.700 UTC [DEBUG] steampipe-plugin-trello.plugin: plugin address: address=/tmp/plugin2972558128 network=unix timestamp="2024-06-18T10:18:18.699+1000"
2024-06-18 00:18:18.700 UTC [INFO]  initializePlugin hub.steampipe.io/plugins/turbot/trello@latest pid 19572 (0xc000991140)
2024-06-18 00:18:18.700 UTC [TRACE] NewPluginClient for plugin hub.steampipe.io/plugins/turbot/trello@latest
2024-06-18 00:18:18.700 UTC [TRACE] stdio: waiting for stdio data
2024-06-18 00:18:18.701 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  setAllConnectionConfigs
2024-06-18 00:18:18.702 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  upsertConnections adding 1 connection connection
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] connection trello build schema and table map
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] Plugin steampipe-plugin-trello initialiseTables
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_member
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_my_member
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_member COMPLETE
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_search_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_search_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getBoard, table trello_search_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getBoardCustomFields, table trello_search_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_search_board COMPLETE
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.Get.initialise
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise table trello_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: using base ShouldIgnoreError: func2
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getBoard, table trello_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: config defines a should retry function so not defaulting to base
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getBoardCustomFields, table trello_board
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_board COMPLETE
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_list
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.702 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.Get.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise table trello_list
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: using base ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_list
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getList, table trello_list
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: config defines a should retry function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_list COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_organization
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_my_organization
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getOrganizationTags, table trello_my_organization
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_organization COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_organization
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.Get.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise table trello_organization
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: using base ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getOrganization, table trello_organization
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: config defines a should retry function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getOrganizationTags, table trello_organization
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_organization COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_search_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_search_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCard, table trello_search_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCardAttachments, table trello_search_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCardChecklists, table trello_search_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCardCustomFieldItems, table trello_search_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_search_card COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_token
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.Get.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise table trello_token
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: using base ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_token
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getToken, table trello_token
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: config defines a should retry function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_token COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_board
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_my_board
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getBoardCustomFields, table trello_my_board
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_board COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_notification
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_my_notification
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_my_notification COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_webhook
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.Get.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise table trello_webhook
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_webhook
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getWebhook, table trello_webhook
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: config defines a should retry function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_webhook COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.Get.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise table trello_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: using base ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCard, table trello_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: config defines a should retry function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCardAttachments, table trello_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCardChecklists, table trello_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getCardCustomFieldItems, table trello_card
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_card COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_member
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultRetryConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] no DefaultIgnoreConfig defined - creating empty
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] apply plugin defaults for DefaultIgnoreConfig, table  plugin
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultRetryConfig: ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] DefaultIgnoreConfig:
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.Get.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise table trello_member
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: using base ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] GetConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] t.List.initialise
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise table trello_member
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: using base ShouldRetryErrorFunc: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] ListConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig ShouldIgnoreError: func1
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise func getMember, table trello_member
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] RetryConfig DefaultTo: config defines a should retry function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] IgnoreConfig DefaultTo: config defines a should ignore function so not defaulting to base
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] HydrateConfig.initialise complete: RetryConfig: ShouldRetryErrorFunc: func1, IgnoreConfig: ShouldIgnoreError: func2
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] back from initialiseHydrateConfigs
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] initialise table trello_member COMPLETE
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] validate plugin steampipe-plugin-trello, required columns []
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] validate DefaultRetryConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] validate DefaultIgnoreConfig
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] validate table names
2024-06-18 00:18:18.703 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] validate rate limiters
2024-06-18 00:18:18.703 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  validateRateLimiters
2024-06-18 00:18:18.705 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  plugin validation result: 0 warnings 0 errors
2024-06-18 00:18:18.705 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  SetAllConnectionConfigs added connection trello to map, setting watch paths
2024-06-18 00:18:18.705 UTC [DEBUG] steampipe-plugin-trello.plugin: [DEBUG] setAllConnectionConfigs finished
2024-06-18 00:18:18.705 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] Plugin ensureCache creating cache, maxCacheStorageMb 0
2024-06-18 00:18:18.705 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  createCacheStore for plugin 'steampipe-plugin-trello' setting max size to 0Mb, Shards: 2, max shard size: 0
2024-06-18 00:18:18.711 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  query cache created, max size 0Mb
2024-06-18 00:18:18.711 UTC [INFO]  setRateLimiters for plugin 'hub.steampipe.io/plugins/turbot/trello@latest'
2024-06-18 00:18:18.712 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  setRateLimiters
2024-06-18 00:18:18.713 UTC [INFO]  initializePlugin complete pid 19572
2024-06-18 00:18:18.713 UTC [INFO]  PluginManager ensurePlugin complete, returning reattach config with PID: 19572 (0xc000991140)
2024-06-18 00:18:18.713 UTC [DEBUG] startPlugin hub.steampipe.io/plugins/turbot/trello@latest (0xc000991140) end
2024-06-18 00:18:18.713 UTC [TRACE] PluginManager Get succeeded for hub.steampipe.io/plugins/turbot/trello@latest, pid 19572 (0xc000994588)
2024-06-18 00:18:18.713 UTC [TRACE] PluginManager Get DONE
2024-06-18 00:18:18.713 UTC [TRACE] PluginManager Get DONE 0xc000991140
2024-06-18 00:18:18.713 UTC [TRACE] NewPluginClientFromReattach for plugin hub.steampipe.io/plugins/turbot/trello@latest
2024-06-18 00:18:18.713 UTC [TRACE] NewPluginClient for plugin hub.steampipe.io/plugins/turbot/trello@latest
2024-06-18 00:18:18.714 UTC [DEBUG] ExecuteSqlWithArgsInTransaction start
2024-06-18 00:18:18.724 UTC [DEBUG] ExecuteSqlWithArgsInTransaction end
2024-06-18 00:18:18.724 UTC [INFO]  bootstrapPluginColumnTable loaded schema for plugins:  hub.steampipe.io/plugins/turbot/trello@latest
2024-06-18 00:18:18.724 UTC [INFO]  populating plugin_columns table for plugins hub.steampipe.io/plugins/turbot/trello@latest
2024-06-18 00:18:18.725 UTC [DEBUG] ExecuteSqlWithArgsInTransaction start
2024-06-18 00:18:18.743 UTC [DEBUG] ExecuteSqlWithArgsInTransaction end
2024-06-18 00:18:18.743 UTC [INFO]  starting connection watcher
2024-06-18 00:18:18.743 UTC [INFO]  created ConnectionWatcher
2024-06-18 00:18:18.743 UTC [INFO]  about to serve
2024-06-18 00:18:18.761 UTC [INFO]  PluginManager RefreshConnections
2024-06-18 00:18:18.761 UTC [INFO]  calling RefreshConnections asyncronously
2024-06-18 00:18:18.761 UTC [INFO]  RefreshConnections start
2024-06-18 00:18:18.761 UTC [INFO]  acquired refreshQueueLock, try to acquire refreshExecuteLock
2024-06-18 00:18:18.761 UTC [INFO]  acquired refreshExecuteLock, released refreshQueueLock
2024-06-18 00:18:18.761 UTC [DEBUG] newRefreshConnectionState start
2024-06-18 00:18:18.761 UTC [INFO]  setting up search path
2024-06-18 00:18:18.761 UTC [TRACE] setting user search path to [public trello steampipe_internal]
2024-06-18 00:18:18.762 UTC [TRACE] user search path sql: [LOCK TABLE pg_user IN SHARE ROW EXCLUSIVE MODE; ALTER USER "steampipe" SET SEARCH_PATH TO "public","trello","steampipe_internal";]
2024-06-18 00:18:18.762 UTC [DEBUG] ExecuteSqlInTransaction start
2024-06-18 00:18:18.765 UTC [DEBUG] ExecuteSqlInTransaction end
2024-06-18 00:18:18.765 UTC [DEBUG] newRefreshConnectionState end
2024-06-18 00:18:18.765 UTC [DEBUG] refreshConnectionState.refreshConnections start
2024-06-18 00:18:18.765 UTC [INFO]  building connectionUpdates
2024-06-18 00:18:18.765 UTC [DEBUG] NewConnectionUpdates start
2024-06-18 00:18:18.765 UTC [DEBUG] populateConnectionUpdates start
2024-06-18 00:18:18.765 UTC [INFO]  Loading connection state
2024-06-18 00:18:18.765 UTC [DEBUG] LoadConnectionState start
2024-06-18 00:18:18.765 UTC [TRACE] with config &{[]}
2024-06-18 00:18:18.766 UTC [DEBUG] LoadConnectionState end
2024-06-18 00:18:18.766 UTC [INFO]  built required connection state
2024-06-18 00:18:18.766 UTC [INFO]  loaded connection state
2024-06-18 00:18:18.766 UTC [INFO]  loading dynamic schema hashes
2024-06-18 00:18:18.766 UTC [TRACE] getSchemaHashesForDynamicSchemas
2024-06-18 00:18:18.766 UTC [TRACE] CreateConnectionPlugins start
2024-06-18 00:18:18.766 UTC [TRACE] CreateConnectionPlugins end
2024-06-18 00:18:18.766 UTC [TRACE] fetched schema for 0 dynamic plugins
2024-06-18 00:18:18.766 UTC [INFO]  connectionsPluginsWithDynamicSchema:
2024-06-18 00:18:18.766 UTC [INFO]  dynamicSchemaHashMap
2024-06-18 00:18:18.766 UTC [INFO]  identify connections to update
2024-06-18 00:18:18.766 UTC [INFO]  Identify connections to delete
2024-06-18 00:18:18.768 UTC [TRACE] Connecting to plugins
2024-06-18 00:18:18.768 UTC [DEBUG] populateConnectionPlugins start
2024-06-18 00:18:18.768 UTC [TRACE] CreateConnectionPlugins start
2024-06-18 00:18:18.768 UTC [TRACE] CreateConnectionPlugins end
2024-06-18 00:18:18.768 UTC [DEBUG] populateConnectionPlugins end
2024-06-18 00:18:18.768 UTC [INFO]  populateAggregators
2024-06-18 00:18:18.769 UTC [INFO]  found 0 plugins with aggregators
2024-06-18 00:18:18.769 UTC [DEBUG] populateConnectionUpdates end
2024-06-18 00:18:18.769 UTC [DEBUG] NewConnectionUpdates end
2024-06-18 00:18:18.769 UTC [INFO]  created connectionUpdates
2024-06-18 00:18:18.769 UTC [INFO]  populatePluginColumnsTable : no updates to plugin_columns table
2024-06-18 00:18:18.769 UTC [INFO]  deleting connections state file
2024-06-18 00:18:18.769 UTC [INFO]  refreshConnections: identify missing plugins
2024-06-18 00:18:18.769 UTC [DEBUG] newConnectionStateTableUpdater start
2024-06-18 00:18:18.769 UTC [DEBUG] newConnectionStateTableUpdater end
2024-06-18 00:18:18.769 UTC [INFO]  execute 0 delete queries
2024-06-18 00:18:18.769 UTC [INFO]  completed execute delete queries (0.000292s)
2024-06-18 00:18:18.769 UTC [DEBUG] connectionStateTableUpdater.start start
2024-06-18 00:18:18.769 UTC [DEBUG] ExecuteSqlWithArgsInTransaction start
2024-06-18 00:18:18.772 UTC [DEBUG] ExecuteSqlWithArgsInTransaction end
2024-06-18 00:18:18.772 UTC [DEBUG] connectionStateTableUpdater.start end
2024-06-18 00:18:18.772 UTC [INFO]  no updates required
2024-06-18 00:18:18.772 UTC [INFO]  saving connections state file
2024-06-18 00:18:18.772 UTC [TRACE] refresh connections: 
    Connection state: trello
    UpdatedConnections: false
2024-06-18 00:18:18.772 UTC [DEBUG] refreshConnectionState.refreshConnections end
2024-06-18 00:18:18.772 UTC [INFO]  released refreshExecuteLock
2024-06-18 00:18:18.772 UTC [INFO]  refreshConnections completion time (0.000000s)
2024-06-18 00:18:18.772 UTC [INFO]  RefreshConnections end
2024-06-18 00:18:18.802 UTC [TRACE] PluginManager Get 0xc000821040
2024-06-18 00:18:18.803 UTC [TRACE] PluginManager Get, connections: '[trello]'
2024-06-18 00:18:18.803 UTC [TRACE] PluginManager ensurePlugin hub.steampipe.io/plugins/turbot/trello@latest (0xc000821040)
2024-06-18 00:18:18.803 UTC [TRACE] startPluginIfNeeded got running plugin (0xc000821040)
2024-06-18 00:18:18.803 UTC [TRACE] waitForPluginLoad (0xc000821040)
2024-06-18 00:18:18.803 UTC [TRACE] plugin initialized: pid 19572 (0xc000821040)
2024-06-18 00:18:18.803 UTC [INFO]  waitForPluginLoad: hub.steampipe.io/plugins/turbot/trello@latest is now loaded and ready (0xc000821040)
2024-06-18 00:18:18.803 UTC [TRACE] waitForPluginLoad succeeded hub.steampipe.io/plugins/turbot/trello@latest (0xc000821040)
2024-06-18 00:18:18.803 UTC [TRACE] PluginManager Get succeeded for hub.steampipe.io/plugins/turbot/trello@latest, pid 19572 (0xc000a3a480)
2024-06-18 00:18:18.803 UTC [TRACE] PluginManager Get DONE
2024-06-18 00:18:18.803 UTC [TRACE] PluginManager Get DONE 0xc000821040
2024-06-18 00:18:18.806 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Plugin execute table name: trello_board quals: NONE (171866989812)
2024-06-18 00:18:18.806 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Executing for 1 connection: trello
2024-06-18 00:18:18.806 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Setting max concurrent connections to 25
2024-06-18 00:18:18.806 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Plugin execute connection trello
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: Plugin execute goroutine for connection trello
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: acquired sem
2024-06-18 00:18:18.807 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: executeForConnection callId: 171866989812, connectionCallId: trello-171866989812, connection: trello table: trello_board cols: name
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: got connection data
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: calling ExtractContextFromCarrier
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: Got query context, table: trello_board, cols: [name]
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: Start execute span
2024-06-18 00:18:18.807 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Created connection cache for connection 'trello'
2024-06-18 00:18:18.807 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Setting free memory interval to 100 rows
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setFetchType map[]
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getMatchingQuals column:'id' operator: =
2024-06-18 00:18:18.807 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getMatchingQuals returning false - qualMap does not contain any quals for column id
2024-06-18 00:18:18.808 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: GetUnsatisfiedKeyColumns for columns column:'id' operator: =
2024-06-18 00:18:18.808 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: key column NOT satisfied column:'id' operator: =
2024-06-18 00:18:18.808 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: satisfied: map[any_of: optional: required:]
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: unsatisfied: map[any_of: optional: required:column:'id' operator: =]
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: unsatisfied required KeyColumns: column:'id' operator: =
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: Set fetchType to fetchTypeList
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getMatchingQuals column:'id_organization' operator: =
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getMatchingQuals returning false - qualMap does not contain any quals for column id_organization
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: Equals key column quals:
{}
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: All key column quals:
{}
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: GetMatrixItem
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: creating query data
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: cacheEnabled, trying cache get (trello-171866989812)
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryCache Get - indexBucketKey index__trello_trello_board, quals: trello-171866989812 (NONE)
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryCache getCachedQueryResult - table trello_board, connectionName trello (trello-171866989812)
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: index bucket key: index__trello_trello_board ttlSeconds 300 limit: -1 (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: doGet cache miss
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getCachedIndexBucket - no item retrieved for cache key index__trello_trello_board
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: getCachedQueryResult found no index bucket for table trello_board (trello-171866989812)
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: getCachedQueryResult returned CACHE MISS - checking for pending transfers (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getPendingResultItem indexBucketKey index__trello_trello_board, columns [pinned short_url starred url prefs title id name description subscribed closed id_organization label_names _ctx], limit -1
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: no pending index item - add pending result, indexBucketKey index__trello_trello_board
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getPendingResultItem indexBucketKey index__trello_trello_board, columns [pinned short_url starred url prefs title id name description subscribed closed id_organization label_names _ctx], limit -1
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: no pending index item - add pending result, indexBucketKey index__trello_trello_board
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: startSet table: trello_board (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: subscribeToPendingRequest table trello_board (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: addPendingResult (trello-171866989812) indexBucketKey index__trello_trello_board, columns [pinned short_url starred url prefs title id name description subscribed closed id_organization label_names _ctx], limit -1
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: no index bucket found - creating one
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: addPendingResult added pending index item to bucket, (trello-171866989812) indexBucketKey index__trello_trello_board, resultKeyRoot trello_trello_board_pinned,short_url,starred,url,prefs,title,id,name,description,subscribed,closed,id_organization,label_names,_ctx_-1, pending item : 0xc014497410
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: **** pending items (trello-171866989812)****
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: key: index__trello_trello_board: item: 0xc014497410, key:trello_trello_board_pinned,short_url,starred,url,prefs,title,id,name,description,subscribed,closed,id_organization,label_names,_ctx_-1
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: ********
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: queryCacheGet returned CACHE MISS (trello-171866989812)
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: calling fetchItems, table: trello_board, matrixItem: [], limit: -1  (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: buildRowsAsync (trello-171866989812)
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryData streamRows (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: executeListCall START (trello-171866989812)
2024-06-18 00:18:18.815 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: setRequestSubscriber readRowsAsync publisher trello-171866989812 (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync internal goroutine to read all rows from the publisher and stream them (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.815 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: GetUnsatisfiedKeyColumns for columns column:'id_organization' operator: =
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: key column NOT satisfied column:'id_organization' operator: =
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: satisfied: map[any_of: optional: required:]
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: unsatisfied: map[any_of: optional:column:'id_organization' operator: = required:]
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: unsatisfied required KeyColumns:
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: list config defines key columns, checking for list qual values
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: doList (trello-171866989812)
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: initialiseRateLimiters for query data 0xc000509c20 (trello-171866989812)
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: getHydrateCallRateLimiter (trello-171866989812)
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: resolveRateLimiterScopeValues (trello-171866989812)
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: HydrateCall tags map[function_name:listMyOrganizations]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Table tags map[table:trello_board]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryData rateLimiterScopeValues map[connection:trello]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: merged scope values map[connection:trello function_name:listMyOrganizations table:trello_board]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: resolvedRateLimiterConfig: no rate limiters (trello-171866989812)
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: getHydrateCallRateLimiter (trello-171866989812)
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: resolveRateLimiterScopeValues (trello-171866989812)
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: HydrateCall tags map[function_name:listBoards]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Table tags map[table:trello_board]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryData rateLimiterScopeValues map[connection:trello]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: merged scope values map[connection:trello function_name:listBoards table:trello_board]
2024-06-18 00:18:18.816 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: resolvedRateLimiterConfig: no rate limiters (trello-171866989812)
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: doList: no matrix item
2024-06-18 00:18:18.816 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.817 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.817 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.817 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.819 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.819 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.819 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.819 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.823 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.823 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.823 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.823 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.832 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.832 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.832 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.832 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.848 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.848 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.848 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.848 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.881 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.881 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.881 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.881 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.931 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.931 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.931 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.931 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:18.982 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:18.982 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:18.982 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:18.982 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.032 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.032 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.032 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.032 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.083 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.083 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.083 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.083 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.133 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.133 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.133 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.133 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.184 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.184 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.184 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.184 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.235 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.235 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.235 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.235 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.285 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.285 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.285 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.285 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.338 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.338 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.338 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.338 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.389 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.389 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.389 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.389 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.440 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.440 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.440 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.440 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.491 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.491 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.491 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.491 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.542 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.542 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.542 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.542 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.592 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.592 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.592 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.592 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.643 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.643 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.643 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.643 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.694 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.694 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.694 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.694 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.745 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.745 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.745 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.745 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.796 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.796 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.796 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.796 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.847 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.847 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.847 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.847 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.897 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.897 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.897 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.897 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:19.948 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:19.948 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:19.948 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:19.948 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:20.000 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:20.000 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:20.000 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:20.000 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:20.050 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:20.050 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 0, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:20.051 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0 from buffer
2024-06-18 00:18:20.051 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:20.091 UTC [ERROR] steampipe-plugin-trello.plugin: [ERROR] 171866989812: trello_my_organization.listMyOrganizations: api_error=<nil>
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: QueryData.fetchComplete
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: executeListCall COMPLETE (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: rowData chan returned nil - wait for rows to complete (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: buildRowsAsync goroutine returning (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: streamRows - nil row, stop streaming (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryData streamRows DONE (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: EndSet (trello-171866989812)
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: EndSet (trello-171866989812) table trello_board root key trello_trello_board_pinned,short_url,starred,url,prefs,title,id,name,description,subscribed,closed,id_organization,label_names,_ctx_-1, pages: 0
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: QueryCache writePageToCache: 0 rows, pageCount 1, page key trello_trello_board_pinned,short_url,starred,url,prefs,title,id,name,description,subscribed,closed,id_organization,label_names,_ctx_-1-0 (trello-171866989812)
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: writePageToCache Set - result written (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryCache EndSet UpdateIndex indexBucketKey index__trello_trello_board
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: doGet cache miss
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getCachedIndexBucket - no item retrieved for cache key index__trello_trello_board
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: getCachedIndexBucket returned cache miss (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: QueryCache EndSet - Added index item to bucket, row count: 0, table: trello_board, quals: NONE, bucket items: 1 (trello-171866989812)
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: cacheSetIndexBucket index__trello_trello_board
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: QueryCache EndSet - IndexBucket written (trello-171866989812)
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: QueryCache EndSet table: trello_board, marking pending item complete (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: calling pendingItemComplete (trello-171866989812)
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: pendingItemComplete (trello-171866989812) indexBucketKey index__trello_trello_board, columns [pinned short_url starred url prefs title id name description subscribed closed id_organization label_names _ctx], limit -1
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: got completedPendingItem, (trello-171866989812)
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: found completed pending item (trello-171866989812) 0xc014497410, key trello_trello_board_pinned,short_url,starred,url,prefs,title,id,name,description,subscribed,closed,id_organization,label_names,_ctx_-1 - removing from map as it is complete
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: deleted from pending, (trello-171866989812) len 0
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: pending bucket now empty - deleting key index__trello_trello_board
2024-06-18 00:18:20.091 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: pendingItemComplete done (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: setRequest waitForSubscribers (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: waiting for subscriber trello-171866989812 (trello-171866989812)
2024-06-18 00:18:20.091 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: waitUntilDone  (trello-171866989812)
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync getting rowsTostream (rows streamed 0) (trello-171866989812)
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince rowsAlreadyStreamed: 0, req.pageCount: 1, req.bufferIndex: 0, startPage: 0 startOffset: 0,
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: getRowsSince reading page 0 key trello_trello_board_pinned,short_url,starred,url,prefs,title,id,name,description,subscribed,closed,id_organization,label_names,_ctx_-1-0
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: getRowsSince read page 0 after 0 retries  - key trello_trello_board_pinned,short_url,starred,url,prefs,title,id,name,description,subscribed,closed,id_organization,label_names,_ctx_-1-0 (trello-171866989812)
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: setRequest getRowsSince returning 0
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: getRowsToStream - publisher trello-171866989812 complete - returning (trello-171866989812)
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync rowsTostream 0 (trello-171866989812)
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync retry returned 0 rows to stream (trello-171866989812)
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: readAndStreamAsync returning
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: readRowsAsync finished streaming - publisher trello-171866989812 (trello-171866989812)
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: setRequestSubscriber readRowsAsync goroutine returning - doneChan CLOSED - publisher trello-171866989812 (trello-171866989812)
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: waitUntilDone - doneChan signalled - we're done (trello-171866989812)
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: subscriber trello-171866989812 done (trello-171866989812)
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: EndSet table trello_board 0 rows (trello-171866989812)
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: cache EndSet succeeded
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: End execute span
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: executeForConnection COMPLETE callId: 171866989812, connectionCallId: trello-171866989812, connection: trello table: trello_board cols: name
2024-06-18 00:18:20.101 UTC [TRACE] steampipe-plugin-trello.plugin: [TRACE] 171866989812: executeForConnection trello returned
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: output wg complete - send nil response (171866989812)
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: empty row on output channel - we are done
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: return without streaming nil row as this is GRPC stream
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Plugin execute table: trello_board closing error chan and output chan  (171866989812)
2024-06-18 00:18:20.101 UTC [INFO]  steampipe-plugin-trello.plugin: [INFO]  171866989812: Plugin execute complete (171866989812)
2024-06-18 00:18:20.114 UTC [INFO]  PluginManager Shutdown
2024-06-18 00:18:20.114 UTC [INFO]  PluginManager closing pool
2024-06-18 00:18:20.115 UTC [INFO]  Kill plugin hub.steampipe.io/plugins/turbot/trello@latest (0xc000afb000)
2024-06-18 00:18:20.115 UTC [DEBUG] PluginManager killPlugin start
2024-06-18 00:18:20.115 UTC [INFO]  PluginManager killing plugin hub.steampipe.io/plugins/turbot/trello@latest (19572)
2024-06-18 00:18:20.115 UTC [DEBUG] stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-06-18 00:18:20.117 UTC [INFO]  plugin process exited: plugin=/home/example/.steampipe/plugins/hub.steampipe.io/plugins/turbot/trello@latest/steampipe-plugin-trello.plugin id=19572
2024-06-18 00:18:20.117 UTC [DEBUG] plugin exited
2024-06-18 00:18:20.117 UTC [DEBUG] PluginManager killPlugin complete
2024-06-18 00:18:20.117 UTC [INFO]  PluginManager Shutdown complete
2024-06-18 00:18:20.164 UTC [TRACE] file watcher event [no events]   ""
2024-06-18 00:18:20.165 UTC [TRACE] file watcher event [no events]   ""
2024-06-18 00:18:20.165 UTC [TRACE] ignore file change [no events]   ""
2024-06-18 00:18:20.165 UTC [TRACE] handleEvent error <nil>
2024-06-18 00:18:20.165 UTC [TRACE] file watcher event [no events]   ""
2024-06-18 00:18:20.165 UTC [TRACE] file watcher event [no events]   ""
2024-06-18 00:18:20.165 UTC [TRACE] ignore file change [no events]   ""
2024-06-18 00:18:20.165 UTC [TRACE] handleEvent error <nil>

@ParthaI
Copy link
Contributor

ParthaI commented Jun 20, 2024

Hello @daviewales,

I have been looking into this issue and have successfully retrieved the details of the boards to which I have access. Currently, I have access to boards in two different workspaces.

Here is the result:
Organizations:

> select name, display_name from trello_my_organization
+-------------------+-----------------------------------+
| name              | display_name                      |
+-------------------+-----------------------------------+
| testuser06034571  | Test-trello                       |
| workspace83144545 | Partha Sarathi Behera's workspace |
+-------------------+-----------------------------------+

Boards:

> select id, name from trello_board
+--------------------------+----------------+
| id                       | name           |
+--------------------------+----------------+
| 663c743779ef029e055b4570 | new board      |
| 6674059677c05d4c7f8ce7ea | MyBoard        |
| 663c514badc453428d4cea50 | Steampipe-test |
+--------------------------+----------------+

From the above boards, new board and MyBoard are within the workspace Test-trello. And Steampipe-test is within the workspace Partha Sarathi Behera's workspace.

From the previous conversation:

I did some more testing. It works for my personal account, but not for my work account. Is there a way to enable debugging information so I can provide more details?

I have two separate Trello accounts (Account-A and Account-B). I have invited a member to use the boards in Account-A. Using the invited user's credentials, I can successfully view the boards.

Could you please explain more about the distinction between a 'personal account' and a 'work account'? Does this mean having two different accounts or workspaces?

Additionally, it would be very helpful if you could provide the steps to set up our environment to reproduce the error.

Thank You!

@daviewales
Copy link
Author

@ParthaI, regarding 'personal account' vs 'work account', I mean that I have two separate accounts. I have created a personal account connected to my personal email address, and at work I have a completely separate account connected to my work email address.

Using the Python library above, I can create a token with access to my personal account, and I can also create a token with access to my work account. (A token created for my work account cannot access my personal account and vice versa.)

However, with steampipe, the token works for my personal account, but not for my work account.

I also tried using the underlying adlio/trello go library directly, and this does work for my organization account:

package main

import "fmt"
import "os"

import "github.com/adlio/trello"

func main() {
	apiKey := os.Getenv("TRELLO_API_KEY")
	token := os.Getenv("TRELLO_TOKEN")

	member_id := os.Getenv("TRELLO_MEMBER_ID")
	org_id := os.Getenv("TRELLO_ORG_ID")

	client := trello.NewClient(apiKey, token)

	member, err := client.GetMember(member_id, trello.Defaults())
	if err != nil {
		fmt.Println(err)
	}
	fmt.Println(member)

	// Return boards I'm a member of
	member_boards, err := member.GetBoards(trello.Defaults())
	if err != nil {
		fmt.Println(err)
	}
	for _, board := range member_boards {
		fmt.Printf("%s\t%s\n", board.ID, board.Name)
	}

	// Return all boards I have access to in the organisation
	org_boards, err := client.GetBoardsInOrganization(org_id)
	if err != nil {
		fmt.Println(err)
	}

	for _, board := range org_boards {
		fmt.Printf("%s\t%s\n", board.ID, board.Name)
	}
}

@ParthaI
Copy link
Contributor

ParthaI commented Jun 25, 2024

Hello @daviewales,

I believe I addressed this in my previous conversation.

Using the Python library above, I can create a token with access to my personal account, and I can also create a token with access to my work account. (A token created for my work account cannot access my personal account and vice versa.)

We can create tokens for any account without any issue. Have you invited the member to join the boards from the work account to the personal account and vice versa? I believe that until the user invitation is sent and accepted, the user will not be able to access those workspaces.

With my current setup, I am able to achieve the same results using Steampipe and the standalone code you shared.

Could you please take a look at my previous conversation and let me know if there are any corrections needed in my environment setup?

Thank you!

@daviewales
Copy link
Author

TL;DR: I think this will be fixed by updating adlio/trello to v1.12.0 in go.mod.

Debugging notes:

Hi @ParthaI, I understand this is tricky to reproduce. I'm still trying to figure out the missing piece of the puzzle.

I have discovered that only some tables return empty.
The following tables work with all my tokens and accounts:

  • trello_my_board
  • trello_my_member
  • trello_my_notification
  • trello_list (where id_board = '<id from trello_my_board>')
  • trello_card (where id_list = '<id from trello_list>')

But the following tables return empty with my work account:

  • trello_board
  • trello_member
  • trello_my_organization

Interestingly, I see that I have three different organisation ids listed for the following query (not my real IDs, but the same structure as follows):

> select id, username, id_organizations from trello_my_member
+--------+-------------+------------------------------+
| id     | username    | id_organizations             |
+--------------------------+-------------+------------+
| abc123 | my_username | ["cde456","a1b2c3","xyz987"] |
+--------------------------+-------------+------------+

Finally, and I suspect this might be a good clue, the following query only works for 2 out of the 3 organisation, and returns an error for my primary organisation (not my real org id):

> select * from trello_organization where id = 'a1b2c3'
Error: JSON decode failed on https://api.trello.com/1/organizations/a1b2c3:
{"id":"a1b2c3","name":"organisationwide","displayName":"My Organisation","desc":"","descData":{"emoji":{}},"url":"https://trello.com/w/organisationwide","website":null,"teamType":"other","logoHash":null,"logoUrl":null,"offering":"trello.business_class","products":[111],"powerUps":[111],"reverseTrialTag":null}: json: cannot unmarshal number into Go struct field Organization.products of type string (SQLSTATE HV000)

The interesting bit:

json: cannot unmarshal number into Go struct field Organization.products of type string (SQLSTATE HV000)

This is interesting, because the field has type []int in the adlio/trello library, and also appears to be a JSON list of ints in the error message above:

"products":[111],"powerUps":[111]

It turns out that this exact error was recently fixed in adlio/trello v1.12.0.
(PR with fix: adlio/trello#95)

So, I'm guessing all that needs to be done here is bump the version of adlio/trello to v1.12.0 in go.mod.

@ParthaI
Copy link
Contributor

ParthaI commented Jun 26, 2024

Hello @daviewales,

I appreciated your efforts in debugging the root cause. However, I'm unsure if the adlio/trello v1.12.0 version can fix our initial error with the trello_board table. I'm experiencing the same behavior as before (I always get the same result) in my environment.

Nonetheless, I've raised a PR that updates the Trello SDK version to v1.12.0. During my tests, I didn't encounter any breaking changes, so we should be good with this version.

Could you please test this in your environment? You can do so by pulling the changes from the PR branch update-trello-sdk-package to see if it resolves our initial issue.

Here are the steps:

  1. Clone the repository: git clone https://github.com/turbot/steampipe-plugin-trello.git
  2. Navigate to the project directory: cd steampipe-plugin-trello
  3. Checkout the branch: git checkout update-trello-sdk-package
  4. Build the project: make
  5. Run the query

Thank you again for your understanding and cooperation!

@daviewales
Copy link
Author

daviewales commented Jun 26, 2024

Thanks @ParthaI, that's fixed every error described in this issue!

With my work account, I no longer get an error when running:

select * from trello_organization where id = 'a1b2c3'

I also now get the expected results when querying the following boards:

  • trello_board
  • trello_member
  • trello_my_organization

I think that perhaps the missing piece of the reproducibility puzzle is that we have a paid organisation-wide power up, which causes https://api.trello.com/1/organizations/a1b2c3 to return a non-empty list for the products and powerUps items:

"products":[111],"powerUps":[111]

If your organisation returns an empty list here, it will not trigger the bug. The bug is only triggered if these lists contain integers.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants