Skip to content

Commit

Permalink
camelCase LogPrefixGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
Howlla authored Feb 4, 2024
1 parent d5e4b19 commit c5b29b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface FluentBitConfigMapProps {
/**
* Prefix for logs stream
*/
log_stream_prefix: string;
logStreamPrefix: string;

/**
* Enable logs from fluentBit process
Expand All @@ -35,7 +35,7 @@ export interface FluentBitConfigMapProps {
const defaultProps: FluentBitConfigMapProps = {
awsRegion: "us-east-1",
logGroupName: "fargate-observability",
log_stream_prefix: "from-fluent-bit-",
logStreamPrefix: "from-fluent-bit-",
enableFlbProcessLogs: false
};

Expand All @@ -61,7 +61,7 @@ export class FluentBitConfigMap implements blueprints.ClusterAddOn {
const values: blueprints.Values = {
awsRegion: this.props.awsRegion,
logGroupName: this.props.logGroupName,
log_stream_prefix: this.props.log_stream_prefix,
log_stream_prefix: this.props.logStreamPrefix,
enableFlbProcessLogs: this.props.enableFlbProcessLogs,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default class SingleNewEksFargateOpenSourceObservabilityConstruct {
const fluentBitConfigMapProps = {
awsRegion: region,
logGroupName: "fargate-observability",
log_stream_prefix: "from-fluent-bit-",
logStreamPrefix: "from-fluent-bit-",
} as FluentBitConfigMapProps;

Reflect.defineMetadata("ordered", true, blueprints.addons.GrafanaOperatorAddon);
Expand Down

0 comments on commit c5b29b2

Please sign in to comment.