The field for the url (blackbox exporter probe) is of type URLField. This prevents the blackboxexporter to be used for tcp, ssh and smtp probes.
|
url = models.URLField(max_length=256) |
Changing it to CharField would introduce less validations but the fuctionality would be more flexible.
The field for the url (blackbox exporter probe) is of type URLField. This prevents the blackboxexporter to be used for tcp, ssh and smtp probes.
promgen/promgen/models.py
Line 381 in 209180f
Changing it to CharField would introduce less validations but the fuctionality would be more flexible.