Using tensorflow_io data streaming for TensorBoard

Hi!

I am trying to use logfiles from my HDFS storage with TensorBoard.
For this, I’m trying to
$ tensorboard --log-dir hdfs://localhost:9000/logfiles
but I’m getting the error
tensorflow.python.framework.errors_impl.UnimplementedError: File system scheme 'hdfs' not implemented (file: 'hdfs://localhost:9000/logfiles/projector_config.pbtxt')

That’s probably (got the same error with TF before) because TensorBoard doesn’t use the tensorflow_io data streaming addons by default.
To use tensorflow_io with TensorFlow I just need to import tensorflow_io as tfio, and then it works.
But as I’m using TensorBoard from the command line, and not from python (where I could possibly import the package), I am not able to do this.

Does anyone have a tip what I could try?
Thanks in advance!