mirror of
https://github.com/NarrativeScience-old/log.io.git
synced 2026-04-25 17:15:52 +03:00
[GH-ISSUE #144] Issues adding new node #117
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/log.io-NarrativeScience-old#117
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @devster31 on GitHub (Jan 7, 2015).
Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/144
Hi, I'm having issues adding a new node, this is my harvester.conf
what am I missing?
@aihunter666 commented on GitHub (Jan 30, 2015):
I'm meeting the same problem, did you find a solution?
@hanneshal commented on GitHub (Jan 30, 2015):
I don't think its possible to add nodes to the harvester. Every harvester IS defacto a node, because you are on the same machine(which is node). You can only add new node streams.
regards
@19h commented on GitHub (Mar 20, 2015):
nodeName, as it is currently implemented in the harvester that is shipping alongside Log.io, is a de-facto server descriptor. That is, you're limited to one nodeName per Server. However, you're free to implement a harvester yourself using the Server TCP interface.Example:
appmonitorwith stream associations:errorsandregistrations, whereerrorsis a stream of logged exceptions that happened in your app andregistrationsis a stream of new registrations that happen in your app.Check out the custom harvester (CS & JS) I just build for you as an example.
Tip! If you're unable to remove the node after playing with the script, simply commit a removal:
@berrywira commented on GitHub (Jul 29, 2015):
I don't know this problem has solved or not yet.
But, when you want add new node. on configuration harvester :
Parameter server: [
host : IP_Server,
port : 28777,
}
and configuration log_server.conf
exports.config = {
host: 'IP_Server'
port: 28777
}
Now, I running log.io with no problem.
@msmathers commented on GitHub (Jan 12, 2020):
v0.4.3 has a new configuration scheme which allows a single file input (formerly harvester) process to define multiple stream/source pairs.