Skip to content
New issue

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

Does not work with custom metrics #1135

Open
stevemao opened this issue Feb 2, 2024 · 2 comments
Open

Does not work with custom metrics #1135

stevemao opened this issue Feb 2, 2024 · 2 comments
Labels
bug Something isn't working

Comments

@stevemao
Copy link

stevemao commented Feb 2, 2024

Describe the bug
A clear and concise description of what the bug is.

Metrics is not exported.

Steps to reproduce
If possible, provide a recipe for reproducing the error.

Step 1. follow
https://opentelemetry.io/docs/faas/lambda-auto-instrument/
All default config. everything should be exported to log which should be visible on cloudwatch

Step 2.
Add

import { metrics } from '@opentelemetry/api';

// Create a meter
export const meter = metrics.getMeter('your-metric-name');

// Define a counter metric
export const requestCounter = meter.createCounter('my-requests', {
  description: 'Counts number of requests processed',
});

requestCounter.add(1, { functionName: context.functionName });

In my lambda

What did you expect to see?
A clear and concise description of what you expected to see.

metrics in log which should be in cloudwatch

What did you see instead?
A clear and concise description of what you saw instead.

Only traces in the log, no metrics

What version of collector/language SDK version did you use?
Version: (e.g., v0.58.0, v1.11.0, etc)

latest

What language layer did you use?
Config: (e.g., Java, Python, etc)

Nodejs

Additional context
Add any other context about the problem here.

@stevemao stevemao added the bug Something isn't working label Feb 2, 2024
@stevemao
Copy link
Author

stevemao commented Feb 2, 2024

I notice it says Flush MeterProvider for nodejs is supported. so metrics should be flushed at the end of execution

@stevemao
Copy link
Author

stevemao commented Feb 3, 2024

after https://github.com/open-telemetry/opentelemetry-lambda/pull/1136/files, it seems that logging works. But changing it to awsemf won't work. enable debugging by OTEL_LOG_LEVEL: 'DEBUG' won't log anything.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant