Circuit breaker in minikube was not getting Open

Hi there,

I am trying to make circuit breaker enable on a get call which returns a runtime exception with 500 internal server error to understand the functionality of circuit breaker.
With destination rules/ policies are:

apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: sample-destinationrule
namespace: default
spec:
host: sample
trafficPolicy:
loadBalancer:
simple: ROUND_ROBIN
connectionPool:
tcp:
maxConnections: 1
connectTimeout: 100ms
http:
http1MaxPendingRequests: 1
maxRequestsPerConnection: 1
maxRetries: 5
outlierDetection:
consecutiveErrors: 1
interval: 30s
baseEjectionTime: 60s
subsets:
- name: v1
labels:
version: ‘v1’

Isn’t it should open circuit breaker on my one get call i.e. curl http://192.168.99.100:30711/getRuntimeException
and block other positive get calls for 60s?
And also where do I see in logs whether the circuit breaker is on?