Can you show how your tags are set up?
For me, I have the following frontmatter:
---
tags: [ "kubernetes", "docker" ]
…
---
Since your dataview query is searching on tag #important I would assume that there is at least one tag on the page. In testing I was able to get similar results as you if I use an inline tag. Based on that, I have an updated query for you to try:
```dataview
TABLE
length(file.tags) as numtags
, join(file.tags, ", ") as tags
FROM
#docker or #kubernetes
```
This appears to work as expected for me with tags in either the frontmatter or inline in your note. Doing this also removes the need to append the # on your tags to make them searchable.
It looks like tags just looks at the frontmatter, where file.tags looks at the entire document.
Thank you for teaching me something new by making me try new things. That helped in making my understanding of the tool and plugin better. Seems I have much left to learn about things. 