@harnessio/react-chaos-manager-client 0.16.3 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chaos-manager/src/services/index.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/ActionActionTemplateProperties.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ActionCustomScriptActionTemplate.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ActionSourceActionTemplate.d.ts +16 -0
- package/dist/chaos-manager/src/services/schemas/ActionSourceActionTemplate.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ChaoshubListFaultsResponse.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppdMetrics.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityMetrics.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityMetrics.js +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs.js +1 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityMetrics.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityMetrics.js +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmProbe.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmProbeTemplate.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmProbeType.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/TypesExperimentComponents.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/TypesGetProbeResponse.d.ts +0 -1
- package/dist/chaos-manager/src/services/schemas/TypesHelperConfig.d.ts +35 -0
- package/dist/chaos-manager/src/services/schemas/TypesHelperConfig.js +1 -0
- package/dist/chaos-manager/src/services/schemas/TypesListProbeResponse.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/TypesProbeRequest.d.ts +0 -1
- package/dist/chaos-manager/src/services/schemas/V1ApmProbeInputs.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/V1SplunkObservabilityInputs.d.ts +15 -0
- package/dist/chaos-manager/src/services/schemas/V1SplunkObservabilityInputs.js +1 -0
- package/dist/chaos-manager/src/services/schemas/V1SplunkObservabilityMetrics.d.ts +10 -0
- package/dist/chaos-manager/src/services/schemas/V1SplunkObservabilityMetrics.js +4 -0
- package/package.json +1 -1
|
@@ -255,6 +255,7 @@ export type { ActionActionTemplateProperties } from './schemas/ActionActionTempl
|
|
|
255
255
|
export type { ActionActionTemplateRunProperties } from './schemas/ActionActionTemplateRunProperties';
|
|
256
256
|
export type { ActionCustomScriptActionTemplate } from './schemas/ActionCustomScriptActionTemplate';
|
|
257
257
|
export type { ActionDelayActionTemplate } from './schemas/ActionDelayActionTemplate';
|
|
258
|
+
export type { ActionSourceActionTemplate } from './schemas/ActionSourceActionTemplate';
|
|
258
259
|
export type { ActionsActionResponse } from './schemas/ActionsActionResponse';
|
|
259
260
|
export type { ActionsActionType } from './schemas/ActionsActionType';
|
|
260
261
|
export type { ActionsExecutedByExperiment } from './schemas/ActionsExecutedByExperiment';
|
|
@@ -393,6 +394,8 @@ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeIdentif
|
|
|
393
394
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost';
|
|
394
395
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePrometheusProbeInputs } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePrometheusProbeInputs';
|
|
395
396
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSecretManager } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSecretManager';
|
|
397
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityMetrics } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityMetrics';
|
|
398
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs';
|
|
396
399
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode';
|
|
397
400
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation';
|
|
398
401
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType';
|
|
@@ -408,6 +411,8 @@ export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeIdentifier } from
|
|
|
408
411
|
export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbePost } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbePost';
|
|
409
412
|
export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs';
|
|
410
413
|
export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSecretManager } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSecretManager';
|
|
414
|
+
export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityMetrics } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityMetrics';
|
|
415
|
+
export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs';
|
|
411
416
|
export type { GithubComHarnessHceSaasHceSdkTypesApiK8sifsImageRegistryScopedIdentifiers } from './schemas/GithubComHarnessHceSaasHceSdkTypesApiK8sifsImageRegistryScopedIdentifiers';
|
|
412
417
|
export type { GithubComWingsSoftwareDdcrPkgTypesChaosInputs } from './schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs';
|
|
413
418
|
export type { GithubComWingsSoftwareDdcrPkgTypesDefinition } from './schemas/GithubComWingsSoftwareDdcrPkgTypesDefinition';
|
|
@@ -634,6 +639,7 @@ export type { TypesGamedayV2 } from './schemas/TypesGamedayV2';
|
|
|
634
639
|
export type { TypesGetGamedayExperimentResponse } from './schemas/TypesGetGamedayExperimentResponse';
|
|
635
640
|
export type { TypesGetGamedayResponse } from './schemas/TypesGetGamedayResponse';
|
|
636
641
|
export type { TypesGetProbeResponse } from './schemas/TypesGetProbeResponse';
|
|
642
|
+
export type { TypesHelperConfig } from './schemas/TypesHelperConfig';
|
|
637
643
|
export type { TypesHostFile } from './schemas/TypesHostFile';
|
|
638
644
|
export type { TypesImportProbeTemplateRequest } from './schemas/TypesImportProbeTemplateRequest';
|
|
639
645
|
export type { TypesInfrastructureType } from './schemas/TypesInfrastructureType';
|
|
@@ -796,6 +802,8 @@ export type { V1SessionAffinityConfig } from './schemas/V1SessionAffinityConfig'
|
|
|
796
802
|
export type { V1SloProbeInputs } from './schemas/V1SloProbeInputs';
|
|
797
803
|
export type { V1SloSourceMetadata } from './schemas/V1SloSourceMetadata';
|
|
798
804
|
export type { V1SourceDetails } from './schemas/V1SourceDetails';
|
|
805
|
+
export type { V1SplunkObservabilityInputs } from './schemas/V1SplunkObservabilityInputs';
|
|
806
|
+
export type { V1SplunkObservabilityMetrics } from './schemas/V1SplunkObservabilityMetrics';
|
|
799
807
|
export type { V1StorageMedium } from './schemas/V1StorageMedium';
|
|
800
808
|
export type { V1StorageOsVolumeSource } from './schemas/V1StorageOsVolumeSource';
|
|
801
809
|
export type { V1SyntheticsTest } from './schemas/V1SyntheticsTest';
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { ActionCustomScriptActionTemplate } from '../schemas/ActionCustomScriptActionTemplate';
|
|
2
2
|
import type { ActionDelayActionTemplate } from '../schemas/ActionDelayActionTemplate';
|
|
3
|
+
import type { ActionSourceActionTemplate } from '../schemas/ActionSourceActionTemplate';
|
|
3
4
|
export interface ActionActionTemplateProperties {
|
|
4
5
|
customScriptAction?: ActionCustomScriptActionTemplate;
|
|
5
6
|
delayAction?: ActionDelayActionTemplate;
|
|
7
|
+
sourceAction?: ActionSourceActionTemplate;
|
|
6
8
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface ActionSourceActionTemplate {
|
|
2
|
+
args?: {};
|
|
3
|
+
command?: {};
|
|
4
|
+
env?: {};
|
|
5
|
+
image?: string;
|
|
6
|
+
imagePullPolicy?: string;
|
|
7
|
+
imagePullSecrets?: {};
|
|
8
|
+
inheritInputs?: boolean;
|
|
9
|
+
nodeSelector?: {};
|
|
10
|
+
privileged?: boolean;
|
|
11
|
+
resources?: {};
|
|
12
|
+
serviceAccountName?: string;
|
|
13
|
+
tolerations?: {};
|
|
14
|
+
volumeMount?: {};
|
|
15
|
+
volumes?: {};
|
|
16
|
+
}
|
|
@@ -3,6 +3,6 @@ import type { ChaoshubresourcesChaosHubResource } from '../schemas/Chaoshubresou
|
|
|
3
3
|
import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
|
|
4
4
|
export interface ChaoshubListFaultsResponse {
|
|
5
5
|
categoryCount?: ChaoshubFaultCategoryCount[];
|
|
6
|
-
|
|
6
|
+
faults?: ChaoshubresourcesChaosHubResource[];
|
|
7
7
|
pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
|
|
8
8
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityMetrics } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityMetrics';
|
|
2
|
+
export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs {
|
|
3
|
+
connectorID?: string;
|
|
4
|
+
splunkObservabilityMetrics?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityMetrics;
|
|
5
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityMetrics } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityMetrics';
|
|
2
|
+
export interface GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs {
|
|
3
|
+
connectorID?: string;
|
|
4
|
+
splunkObservabilityMetrics?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityMetrics;
|
|
5
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs';
|
|
2
2
|
import type { ProbeComparator } from '../schemas/ProbeComparator';
|
|
3
3
|
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePrometheusProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePrometheusProbeInputs';
|
|
4
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs';
|
|
4
5
|
export interface ProbeApmProbe {
|
|
5
6
|
appDynamicsProbeInputs?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs;
|
|
6
7
|
attempt?: {};
|
|
@@ -12,6 +13,7 @@ export interface ProbeApmProbe {
|
|
|
12
13
|
probeTimeout?: string;
|
|
13
14
|
prometheusProbeInputs?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePrometheusProbeInputs;
|
|
14
15
|
retry?: {};
|
|
16
|
+
splunkObservabilityProbeInputs?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSplunkObservabilityProbeInputs;
|
|
15
17
|
stopOnFailure?: boolean;
|
|
16
18
|
type?: string;
|
|
17
19
|
verbosity?: string;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs';
|
|
2
2
|
import type { ProbeComparatorTemplate } from '../schemas/ProbeComparatorTemplate';
|
|
3
3
|
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs';
|
|
4
|
+
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs';
|
|
4
5
|
import type { ProbeApmProbeType } from '../schemas/ProbeApmProbeType';
|
|
5
6
|
export interface ProbeApmProbeTemplate {
|
|
6
7
|
appDynamicsProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs;
|
|
7
8
|
comparator?: ProbeComparatorTemplate;
|
|
8
9
|
prometheusProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs;
|
|
10
|
+
splunkObservabilityProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs;
|
|
9
11
|
type?: ProbeApmProbeType;
|
|
10
12
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ProbeApmProbeType = 'AppDynamics' | 'Prometheus';
|
|
1
|
+
export type ProbeApmProbeType = 'AppDynamics' | 'Prometheus' | 'SplunkObservability';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { TypesConfigMap } from '../schemas/TypesConfigMap';
|
|
2
|
+
import type { TypesHelperConfig } from '../schemas/TypesHelperConfig';
|
|
2
3
|
import type { TypesHostFile } from '../schemas/TypesHostFile';
|
|
3
4
|
import type { V1LocalObjectReference } from '../schemas/V1LocalObjectReference';
|
|
4
5
|
import type { TypesProjectedVolumes } from '../schemas/TypesProjectedVolumes';
|
|
@@ -10,6 +11,7 @@ import type { TypesStatusCheckTimeout } from '../schemas/TypesStatusCheckTimeout
|
|
|
10
11
|
import type { V1Toleration } from '../schemas/V1Toleration';
|
|
11
12
|
export interface TypesExperimentComponents {
|
|
12
13
|
configMaps?: TypesConfigMap[];
|
|
14
|
+
helper?: TypesHelperConfig;
|
|
13
15
|
hostFileVolumes?: TypesHostFile[];
|
|
14
16
|
hostPID?: boolean;
|
|
15
17
|
imagePullSecrets?: V1LocalObjectReference[];
|
|
@@ -9,7 +9,6 @@ export interface TypesGetProbeResponse {
|
|
|
9
9
|
createdAt?: number;
|
|
10
10
|
createdBy?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
|
|
11
11
|
description?: string;
|
|
12
|
-
identity?: string;
|
|
13
12
|
infrastructureType?: TypesInfrastructureType;
|
|
14
13
|
isEnabled?: boolean;
|
|
15
14
|
name?: string;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { TypesConfigMap } from '../schemas/TypesConfigMap';
|
|
2
|
+
import type { V1EnvVar } from '../schemas/V1EnvVar';
|
|
3
|
+
import type { TypesHostFile } from '../schemas/TypesHostFile';
|
|
4
|
+
import type { V1PullPolicy } from '../schemas/V1PullPolicy';
|
|
5
|
+
import type { V1LocalObjectReference } from '../schemas/V1LocalObjectReference';
|
|
6
|
+
import type { V1ResourceRequirements } from '../schemas/V1ResourceRequirements';
|
|
7
|
+
import type { TypesSecret } from '../schemas/TypesSecret';
|
|
8
|
+
import type { TypesSecurityContext } from '../schemas/TypesSecurityContext';
|
|
9
|
+
import type { V1Toleration } from '../schemas/V1Toleration';
|
|
10
|
+
export interface TypesHelperConfig {
|
|
11
|
+
annotations?: {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
args?: string[];
|
|
15
|
+
command?: string[];
|
|
16
|
+
configMaps?: TypesConfigMap[];
|
|
17
|
+
env?: V1EnvVar[];
|
|
18
|
+
hostFileVolumes?: TypesHostFile[];
|
|
19
|
+
hostIPC?: boolean;
|
|
20
|
+
hostNetwork?: boolean;
|
|
21
|
+
hostPID?: boolean;
|
|
22
|
+
image?: string;
|
|
23
|
+
imagePullPolicy?: V1PullPolicy;
|
|
24
|
+
imagePullSecrets?: V1LocalObjectReference[];
|
|
25
|
+
labels?: {
|
|
26
|
+
[key: string]: string;
|
|
27
|
+
};
|
|
28
|
+
nodeSelector?: {
|
|
29
|
+
[key: string]: string;
|
|
30
|
+
};
|
|
31
|
+
resources?: V1ResourceRequirements;
|
|
32
|
+
secrets?: TypesSecret[];
|
|
33
|
+
securityContext?: TypesSecurityContext;
|
|
34
|
+
tolerations?: V1Toleration[];
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { TypesGetProbeResponse } from '../schemas/TypesGetProbeResponse';
|
|
2
1
|
import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
|
|
2
|
+
import type { TypesGetProbeResponse } from '../schemas/TypesGetProbeResponse';
|
|
3
3
|
export interface TypesListProbeResponse {
|
|
4
|
-
data?: TypesGetProbeResponse[];
|
|
5
4
|
pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
|
|
5
|
+
probes?: TypesGetProbeResponse[];
|
|
6
6
|
totalNoOfProbes?: number;
|
|
7
7
|
}
|
|
@@ -6,7 +6,6 @@ import type { TypesProbeType } from '../schemas/TypesProbeType';
|
|
|
6
6
|
import type { TemplateVariable } from '../schemas/TemplateVariable';
|
|
7
7
|
export interface TypesProbeRequest {
|
|
8
8
|
description?: string;
|
|
9
|
-
identity?: string;
|
|
10
9
|
infrastructureType?: TypesInfrastructureType;
|
|
11
10
|
isEnabled?: boolean;
|
|
12
11
|
name?: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { V1AppDynamicsInputs } from '../schemas/V1AppDynamicsInputs';
|
|
2
2
|
import type { V1ComparatorInfo } from '../schemas/V1ComparatorInfo';
|
|
3
3
|
import type { V1PrometheusInputs } from '../schemas/V1PrometheusInputs';
|
|
4
|
+
import type { V1SplunkObservabilityInputs } from '../schemas/V1SplunkObservabilityInputs';
|
|
4
5
|
export interface V1ApmProbeInputs {
|
|
5
6
|
/**
|
|
6
7
|
* AppDynamicsInputs contains the inputs required for AppDynamics probe
|
|
@@ -14,6 +15,10 @@ export interface V1ApmProbeInputs {
|
|
|
14
15
|
* PrometheusInputs contains the inputs required for prometheus probe
|
|
15
16
|
*/
|
|
16
17
|
prometheusInputs?: V1PrometheusInputs;
|
|
18
|
+
/**
|
|
19
|
+
* SplunkObservabilityInputs contains the inputs required for Splunk Observability probe
|
|
20
|
+
*/
|
|
21
|
+
splunkObservabilityInputs?: V1SplunkObservabilityInputs;
|
|
17
22
|
/**
|
|
18
23
|
* Type for the prometheus probe
|
|
19
24
|
*/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { V1SplunkObservabilityMetrics } from '../schemas/V1SplunkObservabilityMetrics';
|
|
2
|
+
export interface V1SplunkObservabilityInputs {
|
|
3
|
+
/**
|
|
4
|
+
* AuthSecretName secret name for the authentication
|
|
5
|
+
*/
|
|
6
|
+
authSecretName?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Endpoint for the Splunk Observability probe
|
|
9
|
+
*/
|
|
10
|
+
endpoint?: string;
|
|
11
|
+
/**
|
|
12
|
+
* SplunkObservabilityMetrics contains the splunk observability metrics
|
|
13
|
+
*/
|
|
14
|
+
splunkObservabilityMetrics?: V1SplunkObservabilityMetrics;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED