Repository URL to install this package:
|
Version:
0.6.14 ▾
|
// (c) Copyright 2023 Supertenant Ltd. - all rights reserved.
// See LICENSE file in project root for license terms.
"use strict";const DataProcessor=require("../DataProcessor"),CoreDataSource=require("./CoreDataSource");class NodeJsProcessor extends DataProcessor{constructor(coreAndShared,pid){super("com.instana.plugin.nodejs"),this.pid=pid,this.addSource("core",new CoreDataSource(coreAndShared))}getEntityId(){return this.pid}processData(rawDataPerSource){return{...rawDataPerSource.core,pid:this.pid}}}module.exports=exports=NodeJsProcessor;