[HELP] Dashboards not listed/downloaded #200
-
I'm using v0.5.0 with a simple config file as below: context_name: testing
contexts:
testing:
output_path: _build/gdg
url: http://localhost:3000
user_name: admin
password: admin
ignore_filters: true
global:
debug: true
ignore_ssl_errors: true I can list connections, users, organisations, etc except dashboards! What could be missing? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
I'm going to convert this to a conversation, as it's likely not a bug or issue with GDG. |
Beta Was this translation helpful? Give feedback.
-
A few questions. What folder are they in? By default GDG is very conservative on what it touches. Initial design was to only look at the list of filter_override:
ignore_dashboard_filters: false # When set to true all Watched filtered folders will be ignored and ALL folders will be acted on
watched:
- General
- Other The snippet below might need to be added depending on what you're setup looks like. Look at https://github.com/esnet/gdg/blob/master/config/importer-example.yml it has some more complex examples if you need inspiration. Also, I think the "ignore_filters" you're trying to set isn't a valid configuration option. If you can let me know where you got that from I'll be sure to remove / update the documentation. |
Beta Was this translation helpful? Give feedback.
-
👍 glad it works for you. A few minor notes you may want to keep in mind.
|
Beta Was this translation helpful? Give feedback.
A few questions. What folder are they in? By default GDG is very conservative on what it touches. Initial design was to only look at the list of
watched
folders. If you don't define any it'll only look atGeneral
.The snippet below might need to be added depending on what you're setup looks like. Look at https://github.com/esnet/gdg/blob/master/config/importer-example.yml it has some more complex examples if you need inspiration.
Also, I think the "ignore_filters" you're trying to set isn't a …