multiple [[collectd]] in influx.confSetting up diskless workstation for multiple clientsCan I copy a MySQL...
How to persuade recruiters to send me the Job Description?
Script that helps people make better choices
Fancy String Replace
What to say to a student who has failed?
Why would the US President need briefings on UFOs?
Justifying the use of directed energy weapons
Can you help me understand Modes from the aspect of chord changes?
Why is 日本 read as "nihon" but not "nitsuhon"?
Brexit and backstop: would changes require unanimous approval by all EU countries? Does Ireland hold a veto?
Why does The Ancient One think differently about Doctor Strange in Endgame than the film Doctor Strange?
Is “I am getting married with my sister” ambiguous?
What professions would a medieval village with a population of 100 need?
In the MCU, why does Mjölnir retain its enchantments after Ragnarok?
Can I switch to third-person while not in 'town' in Destiny 2?
Gamma GLM - Derive prediction intervals for new x_i
Can pay be witheld for hours cleaning up after closing time?
Factoring the square of this polynomial?
How can I watch the 17th (or last, if less) line in files of a folder?
On the feasibility of space battleships
Is a butterfly one or two animals?
How would one country purchase another?
What is this symbol: semicircles facing eachother
Are illustrations in novels frowned upon?
Shouldn't the "credit score" prevent Americans from going deeper and deeper into personal debt?
multiple [[collectd]] in influx.conf
Setting up diskless workstation for multiple clientsCan I copy a MySQL database by copying the files? What do the files contain exactly?DNS zone fallback filepostfix virtual domain on specific IP addressUnable to start database in glassfish in CentOS7stop scheduled cron jobs while database is creatingThe server encountered an unexpected condition that prevented it from fulfilling the requestbind 9.9.4 rndc: connection to remote host closedIssues with running nginx and apache2 webserver together
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have following collectd
instance running in influx.conf
file and everything is good, but now I want to setup another instance totally isolated with existing one how do I do that? And can I do following in influx.conf
file?
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8096"
database = "database-1"
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8097"
database = "database-2"
linux database influxdb collectd
add a comment |
I have following collectd
instance running in influx.conf
file and everything is good, but now I want to setup another instance totally isolated with existing one how do I do that? And can I do following in influx.conf
file?
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8096"
database = "database-1"
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8097"
database = "database-2"
linux database influxdb collectd
add a comment |
I have following collectd
instance running in influx.conf
file and everything is good, but now I want to setup another instance totally isolated with existing one how do I do that? And can I do following in influx.conf
file?
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8096"
database = "database-1"
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8097"
database = "database-2"
linux database influxdb collectd
I have following collectd
instance running in influx.conf
file and everything is good, but now I want to setup another instance totally isolated with existing one how do I do that? And can I do following in influx.conf
file?
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8096"
database = "database-1"
[[collectd]]
enabled = true
bind-address = "0.0.0.0:8097"
database = "database-2"
linux database influxdb collectd
linux database influxdb collectd
edited yesterday
Kevdog777
2,13213 gold badges35 silver badges61 bronze badges
2,13213 gold badges35 silver badges61 bronze badges
asked 2 days ago
SatishSatish
6691 gold badge14 silver badges38 bronze badges
6691 gold badge14 silver badges38 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
According to documentation, you should be able to use multiple CollectD input instances just like you specified above.
Edit
Your configuration misses security-level
and probably more options:
run: invalid collectd config: Invalid security level. To generate a valid configuration file run `influxd config > influxdb.generated.conf`
This works for me with even 3 collectd
instances configured like this:
[[collectd]]
enabled = true
bind-address = ":25826"
database = "collectd-1"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25827"
database = "collectd-2"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25828"
database = "collectd-3"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
$ docker run -p 8086:8086 -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro -v $PWD/types.db:/usr/share/collectd/types.db influxdb -config /etc/influxdb/influxdb.conf
[...]
ts=2019-08-20T14:23:49.750638Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.750653Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.754041Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25826
ts=2019-08-20T14:23:49.754405Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.754436Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.759837Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25827
ts=2019-08-20T14:23:49.760296Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.760321Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.763582Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25828
ts=2019-08-20T14:23:49.764035Z lvl=info msg="Sending usage statistics to usage.influxdata.com" log_id=0HNrR~ZG000
ts=2019-08-20T14:23:49.764091Z lvl=info msg="Listening for signals" log_id=0HNrR~ZG000
Not working, i have tired my example :( it totally stopped working when i add two instance, if i remove one it works.
– Satish
yesterday
any error message?
– Bart
yesterday
check this thread out. github.com/influxdata/influxdb/issues/4405 folks saying you can't do that.
– Satish
yesterday
that's old and as far as I see, would've changed so far, influx documentation would suggest IMO you should be able to configure multiple. check logs for errors, maybe something is misconfigured?
– Bart
yesterday
1
nevermind... i figured it out.. my old instance was missingparse-multivalue-plugin
option, look like when you have more than two instance you need all the options in both instance. older and newer.. Thank you so much!!!
– Satish
yesterday
|
show 4 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f536355%2fmultiple-collectd-in-influx-conf%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to documentation, you should be able to use multiple CollectD input instances just like you specified above.
Edit
Your configuration misses security-level
and probably more options:
run: invalid collectd config: Invalid security level. To generate a valid configuration file run `influxd config > influxdb.generated.conf`
This works for me with even 3 collectd
instances configured like this:
[[collectd]]
enabled = true
bind-address = ":25826"
database = "collectd-1"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25827"
database = "collectd-2"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25828"
database = "collectd-3"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
$ docker run -p 8086:8086 -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro -v $PWD/types.db:/usr/share/collectd/types.db influxdb -config /etc/influxdb/influxdb.conf
[...]
ts=2019-08-20T14:23:49.750638Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.750653Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.754041Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25826
ts=2019-08-20T14:23:49.754405Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.754436Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.759837Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25827
ts=2019-08-20T14:23:49.760296Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.760321Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.763582Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25828
ts=2019-08-20T14:23:49.764035Z lvl=info msg="Sending usage statistics to usage.influxdata.com" log_id=0HNrR~ZG000
ts=2019-08-20T14:23:49.764091Z lvl=info msg="Listening for signals" log_id=0HNrR~ZG000
Not working, i have tired my example :( it totally stopped working when i add two instance, if i remove one it works.
– Satish
yesterday
any error message?
– Bart
yesterday
check this thread out. github.com/influxdata/influxdb/issues/4405 folks saying you can't do that.
– Satish
yesterday
that's old and as far as I see, would've changed so far, influx documentation would suggest IMO you should be able to configure multiple. check logs for errors, maybe something is misconfigured?
– Bart
yesterday
1
nevermind... i figured it out.. my old instance was missingparse-multivalue-plugin
option, look like when you have more than two instance you need all the options in both instance. older and newer.. Thank you so much!!!
– Satish
yesterday
|
show 4 more comments
According to documentation, you should be able to use multiple CollectD input instances just like you specified above.
Edit
Your configuration misses security-level
and probably more options:
run: invalid collectd config: Invalid security level. To generate a valid configuration file run `influxd config > influxdb.generated.conf`
This works for me with even 3 collectd
instances configured like this:
[[collectd]]
enabled = true
bind-address = ":25826"
database = "collectd-1"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25827"
database = "collectd-2"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25828"
database = "collectd-3"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
$ docker run -p 8086:8086 -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro -v $PWD/types.db:/usr/share/collectd/types.db influxdb -config /etc/influxdb/influxdb.conf
[...]
ts=2019-08-20T14:23:49.750638Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.750653Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.754041Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25826
ts=2019-08-20T14:23:49.754405Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.754436Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.759837Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25827
ts=2019-08-20T14:23:49.760296Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.760321Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.763582Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25828
ts=2019-08-20T14:23:49.764035Z lvl=info msg="Sending usage statistics to usage.influxdata.com" log_id=0HNrR~ZG000
ts=2019-08-20T14:23:49.764091Z lvl=info msg="Listening for signals" log_id=0HNrR~ZG000
Not working, i have tired my example :( it totally stopped working when i add two instance, if i remove one it works.
– Satish
yesterday
any error message?
– Bart
yesterday
check this thread out. github.com/influxdata/influxdb/issues/4405 folks saying you can't do that.
– Satish
yesterday
that's old and as far as I see, would've changed so far, influx documentation would suggest IMO you should be able to configure multiple. check logs for errors, maybe something is misconfigured?
– Bart
yesterday
1
nevermind... i figured it out.. my old instance was missingparse-multivalue-plugin
option, look like when you have more than two instance you need all the options in both instance. older and newer.. Thank you so much!!!
– Satish
yesterday
|
show 4 more comments
According to documentation, you should be able to use multiple CollectD input instances just like you specified above.
Edit
Your configuration misses security-level
and probably more options:
run: invalid collectd config: Invalid security level. To generate a valid configuration file run `influxd config > influxdb.generated.conf`
This works for me with even 3 collectd
instances configured like this:
[[collectd]]
enabled = true
bind-address = ":25826"
database = "collectd-1"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25827"
database = "collectd-2"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25828"
database = "collectd-3"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
$ docker run -p 8086:8086 -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro -v $PWD/types.db:/usr/share/collectd/types.db influxdb -config /etc/influxdb/influxdb.conf
[...]
ts=2019-08-20T14:23:49.750638Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.750653Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.754041Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25826
ts=2019-08-20T14:23:49.754405Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.754436Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.759837Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25827
ts=2019-08-20T14:23:49.760296Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.760321Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.763582Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25828
ts=2019-08-20T14:23:49.764035Z lvl=info msg="Sending usage statistics to usage.influxdata.com" log_id=0HNrR~ZG000
ts=2019-08-20T14:23:49.764091Z lvl=info msg="Listening for signals" log_id=0HNrR~ZG000
According to documentation, you should be able to use multiple CollectD input instances just like you specified above.
Edit
Your configuration misses security-level
and probably more options:
run: invalid collectd config: Invalid security level. To generate a valid configuration file run `influxd config > influxdb.generated.conf`
This works for me with even 3 collectd
instances configured like this:
[[collectd]]
enabled = true
bind-address = ":25826"
database = "collectd-1"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25827"
database = "collectd-2"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
[[collectd]]
enabled = true
bind-address = ":25828"
database = "collectd-3"
retention-policy = ""
batch-size = 5000
batch-pending = 10
batch-timeout = "10s"
read-buffer = 0
typesdb = "/usr/share/collectd/types.db"
security-level = "none"
auth-file = "/etc/collectd/auth_file"
parse-multivalue-plugin = "split"
$ docker run -p 8086:8086 -v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro -v $PWD/types.db:/usr/share/collectd/types.db influxdb -config /etc/influxdb/influxdb.conf
[...]
ts=2019-08-20T14:23:49.750638Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.750653Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.754041Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25826
ts=2019-08-20T14:23:49.754405Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.754436Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.759837Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25827
ts=2019-08-20T14:23:49.760296Z lvl=info msg="Starting collectd service" log_id=0HNrR~ZG000 service=collectd
ts=2019-08-20T14:23:49.760321Z lvl=info msg="Loading types from file" log_id=0HNrR~ZG000 service=collectd path=/usr/share/collectd/types.db
ts=2019-08-20T14:23:49.763582Z lvl=info msg="Listening on UDP" log_id=0HNrR~ZG000 service=collectd addr=[::]:25828
ts=2019-08-20T14:23:49.764035Z lvl=info msg="Sending usage statistics to usage.influxdata.com" log_id=0HNrR~ZG000
ts=2019-08-20T14:23:49.764091Z lvl=info msg="Listening for signals" log_id=0HNrR~ZG000
edited yesterday
answered yesterday
BartBart
1,3261 gold badge3 silver badges18 bronze badges
1,3261 gold badge3 silver badges18 bronze badges
Not working, i have tired my example :( it totally stopped working when i add two instance, if i remove one it works.
– Satish
yesterday
any error message?
– Bart
yesterday
check this thread out. github.com/influxdata/influxdb/issues/4405 folks saying you can't do that.
– Satish
yesterday
that's old and as far as I see, would've changed so far, influx documentation would suggest IMO you should be able to configure multiple. check logs for errors, maybe something is misconfigured?
– Bart
yesterday
1
nevermind... i figured it out.. my old instance was missingparse-multivalue-plugin
option, look like when you have more than two instance you need all the options in both instance. older and newer.. Thank you so much!!!
– Satish
yesterday
|
show 4 more comments
Not working, i have tired my example :( it totally stopped working when i add two instance, if i remove one it works.
– Satish
yesterday
any error message?
– Bart
yesterday
check this thread out. github.com/influxdata/influxdb/issues/4405 folks saying you can't do that.
– Satish
yesterday
that's old and as far as I see, would've changed so far, influx documentation would suggest IMO you should be able to configure multiple. check logs for errors, maybe something is misconfigured?
– Bart
yesterday
1
nevermind... i figured it out.. my old instance was missingparse-multivalue-plugin
option, look like when you have more than two instance you need all the options in both instance. older and newer.. Thank you so much!!!
– Satish
yesterday
Not working, i have tired my example :( it totally stopped working when i add two instance, if i remove one it works.
– Satish
yesterday
Not working, i have tired my example :( it totally stopped working when i add two instance, if i remove one it works.
– Satish
yesterday
any error message?
– Bart
yesterday
any error message?
– Bart
yesterday
check this thread out. github.com/influxdata/influxdb/issues/4405 folks saying you can't do that.
– Satish
yesterday
check this thread out. github.com/influxdata/influxdb/issues/4405 folks saying you can't do that.
– Satish
yesterday
that's old and as far as I see, would've changed so far, influx documentation would suggest IMO you should be able to configure multiple. check logs for errors, maybe something is misconfigured?
– Bart
yesterday
that's old and as far as I see, would've changed so far, influx documentation would suggest IMO you should be able to configure multiple. check logs for errors, maybe something is misconfigured?
– Bart
yesterday
1
1
nevermind... i figured it out.. my old instance was missing
parse-multivalue-plugin
option, look like when you have more than two instance you need all the options in both instance. older and newer.. Thank you so much!!!– Satish
yesterday
nevermind... i figured it out.. my old instance was missing
parse-multivalue-plugin
option, look like when you have more than two instance you need all the options in both instance. older and newer.. Thank you so much!!!– Satish
yesterday
|
show 4 more comments
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f536355%2fmultiple-collectd-in-influx-conf%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown