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

AppSignal integration doesn't seem to work #106

Open
mgm1313 opened this issue Sep 24, 2024 · 3 comments
Open

AppSignal integration doesn't seem to work #106

mgm1313 opened this issue Sep 24, 2024 · 3 comments
Assignees
Labels
bug Something isn't working wontfix This will not be worked on

Comments

@mgm1313
Copy link

mgm1313 commented Sep 24, 2024

Given this instrumentation

import { Appsignal } from "@appsignal/nodejs";
import * as skiffaAppsignal from "@skiffa/appsignal";

const appsignalPushApiKey = process.env.APPSIGNAL_PUSH_API_KEY;

export const appsignal = new Appsignal({
  active: appsignalPushApiKey != null,
  environment: process.env.NODE_ENV,
  name: "api-server",
  pushApiKey: appsignalPushApiKey,
  additionalInstrumentations: [new skiffaAppsignal.Instrumentation()],
});

And calling it within the main file:

import { createServer } from "./server.js";

import "./instrumentation.js";

function main() {
  const server = createServer();

  return server.start();
}

main();

I don't see any traces or errors in AppSignal. I do see Node.js Heap Statistics, though, so it seems the connection is working?
What would be the best way to debug this?

@elmerbulthuis elmerbulthuis self-assigned this Oct 3, 2024
@elmerbulthuis elmerbulthuis added the bug Something isn't working label Oct 3, 2024
@elmerbulthuis
Copy link
Member

I can confirm it does not really work. investigating

@elmerbulthuis
Copy link
Member

AppSignal is moving to an OpenTelemetry compatible system so I guess the OpenTelemetry integration would replace this integration. Until that happens we still need this integration.

@mgm1313 I understand that AppSignal is actively looking into this. If they want, I can help!

@elmerbulthuis elmerbulthuis added the wontfix This will not be worked on label Oct 25, 2024
@elmerbulthuis
Copy link
Member

Setting this to wontfix until I know what AppSignal is up to.

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

No branches or pull requests

2 participants