We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I follow the guide https://docs.aws.amazon.com/prometheus/latest/userguide/integrating-cw-firehose.html to setup the solution with CDK. All resources can created successfully. When I create a Metric Stream for the firehose created by CDK.
I got the following error message when calling the lambda from firehose.
2024/03/11 07:09:34 { "errorMessage": "invalid character 'Þ' looking for beginning of value", "errorType": "SyntaxError", "stackTrace": [ { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/errors.go", "line": 39, "label": "lambdaPanicResponse" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go", "line": 116, "label": "callBytesHandlerFunc.func1" }, { "path": "runtime/panic.go", "line": 884, "label": "gopanic" }, { "path": "lambda/main.go", "line": 84, "label": "HandleRequest" }, { "path": "reflect/value.go", "line": 586, "label": "Value.call" }, { "path": "reflect/value.go", "line": 370, "label": "Value.Call" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/handler.go", "line": 293, "label": "reflectHandler.func2" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go", "line": 119, "label": "callBytesHandlerFunc" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go", "line": 75, "label": "handleInvoke" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go", "line": 39, "label": "startRuntimeAPILoop" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/entry.go", "line": 106, "label": "start" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/entry.go", "line": 69, "label": "StartWithOptions" }, { "path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/entry.go", "line": 45, "label": "Start" }, { "path": "lambda/main.go", "line": 119, "label": "main" }, { "path": "runtime/proc.go", "line": 250, "label": "main" }, { "path": "runtime/asm_amd64.s", "line": 1598, "label": "goexit" } ] }
The text was updated successfully, but these errors were encountered:
hey @gaussye
Can you check if the output format from CW metrics stream is JSON and not Open Telemetry as that might explain this issue?
Sorry, something went wrong.
No branches or pull requests
I follow the guide https://docs.aws.amazon.com/prometheus/latest/userguide/integrating-cw-firehose.html to setup the solution with CDK. All resources can created successfully. When I create a Metric Stream for the firehose created by CDK.
I got the following error message when calling the lambda from firehose.
2024/03/11 07:09:34
{
"errorMessage": "invalid character 'Þ' looking for beginning of value",
"errorType": "SyntaxError",
"stackTrace": [
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/errors.go",
"line": 39,
"label": "lambdaPanicResponse"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go",
"line": 116,
"label": "callBytesHandlerFunc.func1"
},
{
"path": "runtime/panic.go",
"line": 884,
"label": "gopanic"
},
{
"path": "lambda/main.go",
"line": 84,
"label": "HandleRequest"
},
{
"path": "reflect/value.go",
"line": 586,
"label": "Value.call"
},
{
"path": "reflect/value.go",
"line": 370,
"label": "Value.Call"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/handler.go",
"line": 293,
"label": "reflectHandler.func2"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go",
"line": 119,
"label": "callBytesHandlerFunc"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go",
"line": 75,
"label": "handleInvoke"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/invoke_loop.go",
"line": 39,
"label": "startRuntimeAPILoop"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/entry.go",
"line": 106,
"label": "start"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/entry.go",
"line": 69,
"label": "StartWithOptions"
},
{
"path": "github.com/aws/aws-lambda-go@v1.37.0/lambda/entry.go",
"line": 45,
"label": "Start"
},
{
"path": "lambda/main.go",
"line": 119,
"label": "main"
},
{
"path": "runtime/proc.go",
"line": 250,
"label": "main"
},
{
"path": "runtime/asm_amd64.s",
"line": 1598,
"label": "goexit"
}
]
}
The text was updated successfully, but these errors were encountered: