You must make sure you have an extraction on your data to differentiate the two, but you would simply do:
sourcetype=whatever | chart count by ssl_type
where ssl_type might be the field that contains, say, the inbound port number or a search-time extraction of the incoming URL request, assuming that is logged.
Try this search:
sourcetype=whatever | chart count(ssl_type) over protocol by ssl_type
You must make sure you have an extraction on your data to differentiate the two, but you would simply do:
sourcetype=whatever | chart count by ssl_type
where ssl_type might be the field that contains, say, the inbound port number or a search-time extraction of the incoming URL request, assuming that is logged.