interface NeuronMonitorAddOnProps {
    createNamespace?: boolean;
    imageTag?: string;
    namespace?: string;
    port?: number;
}

Properties

createNamespace?: boolean

To Create Namespace using CDK. This should be done only for the first time.

imageTag?: string

The tag of the Neuron Monitor application's Docker image.

'latest'
namespace?: string

Neuron Application's namespace

'kube-system'
port?: number

Application's port

9010