There are some option to add message link to labels in google logging?
I have this log entry and wont to place a link to file
_logger.WithLabels(new KeyValuePair<string, string>[]
{
new KeyValuePair<string, string>("file1", "/files/1.txt"),
new KeyValuePair<string, string>("code", "555")
}).LogInformation("test log message");
so in google log explorer I can click on labels.file1 as a link to this file /files/1.txt?