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

dynamic OID creation #261

Open
ghost opened this issue May 7, 2019 · 1 comment
Open

dynamic OID creation #261

ghost opened this issue May 7, 2019 · 1 comment

Comments

@ghost
Copy link

ghost commented May 7, 2019

Hello!

I'd like dynamic OID creation In my project.
For this I need get OID from request before doing agent.request() in code.

This option is not described in the documentation.

How I can get OID before processing client request?

@jaksonxavier
Copy link

for (let x in handle.data) {
	mib.push({
		oid: handle.data[x].oid,
		handler: function(pqr) {
			let val = snmp.data.createData({
				type: 'OctetString',
				value: String(handle.data[x].value)
			});
			snmp.provider.readOnlyScalar(pqr, val);
		}
	});
	agent.request(mib);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant