More info on tooltip

Hi,
I am using the latest version grafana-6.6.0. How do i add more info in the tooltip? I have these in MySQL table.

Timestamp, IPAddress, Filename, FileSize,DownloadTime

With the timeseries graph, the tooltip is only showing the TimeStamp and DownloadTime. I would like to include the IPAddress, Filename, Filesize in the tooltip at least

SELECT
__timeGroupAlias(Timestamp,__interval),
avg(DownloadTime) AS “DownloadTime”
FROM Table_httpd1
WHERE
FileName LIKE ‘%’
GROUP BY 1
ORDER BY __timeGroup(Timestamp,__interval)

thanks,
sirjune