In branch dictionary-clickhouse
When you create the DB you are using small letters for dictionaries.protocols but in the CSV you are using leading capital letter
It cause error in the Grafana dashboard for ports
Please change the DB to have leading capital letter
CREATE DATABASE dictionaries;
CREATE DICTIONARY dictionaries.protocols ( \
Proto UInt8, \
Name String, \
Description String \
) \
PRIMARY KEY Proto \
LAYOUT(FLAT()) \
SOURCE (FILE(path '/var/lib/clickhouse/user_files/protocols.csv' format 'CSVWithNames')) \
LIFETIME(3600);