ZENOSS - Custom page with custom graphsMonitoring LAN with ZenossZenoss - rename device from terminalZenoss 3...
Does a large simulator bay have standard public address announcements?
Re-entry to Germany after vacation using blue card
How come there are so many candidates for the 2020 Democratic party presidential nomination?
How could Tony Stark make this in Endgame?
Relationship between strut and baselineskip
How to have a sharp product image?
How to not starve gigantic beasts
Checks user level and limit the data before saving it to mongoDB
What makes accurate emulation of old systems a difficult task?
Check if a string is entirely made of the same substring
Can an Area of Effect spell cast outside a Prismatic Wall extend inside it?
Map of water taps to fill bottles
What happened to Captain America in Endgame?
Philosophical question on logistic regression: why isn't the optimal threshold value trained?
Is there really no use for MD5 anymore?
Was there a shared-world project before "Thieves World"?
Don’t seats that recline flat defeat the purpose of having seatbelts?
Pre-plastic human skin alternative
A Note on N!
Can I criticise the more senior developers around me for not writing clean code?
Initiative: Do I lose my attack/action if my target moves or dies before my turn in combat?
Aligning equation numbers vertically
How to write a column outside the braces in a matrix?
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
ZENOSS - Custom page with custom graphs
Monitoring LAN with ZenossZenoss - rename device from terminalZenoss 3 adding custom propertiesSNMP set up for Zenoss serverZenoss with Apache Rewrite subdirectoryMonitoring bespoke software with ZenossZenoss modeling localhostZenoss Monitoring Templates, clearing eventsPush monitoring data from Zenoss to another systemZenoss time based monitoring
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
In zenoss we are trying to evaluate if it is feasible to build a custom page that allows a user to graph data such as:
requests per minute
response time
filter based on type of request, http status, os, os version.
Zenoss would read in a log file in csv format every 5 minutes with the latest snapshot of data. Ideally the custom page would have drop-down filters for begin time, end time, request type, status, os, version that would create a very customized view into the data.
Is this possible? I don't think zenoss is necessarily the recommended platform for this type of data representation, but can this be achieved via a custom page that we can develop?
zenoss
add a comment |
In zenoss we are trying to evaluate if it is feasible to build a custom page that allows a user to graph data such as:
requests per minute
response time
filter based on type of request, http status, os, os version.
Zenoss would read in a log file in csv format every 5 minutes with the latest snapshot of data. Ideally the custom page would have drop-down filters for begin time, end time, request type, status, os, version that would create a very customized view into the data.
Is this possible? I don't think zenoss is necessarily the recommended platform for this type of data representation, but can this be achieved via a custom page that we can develop?
zenoss
add a comment |
In zenoss we are trying to evaluate if it is feasible to build a custom page that allows a user to graph data such as:
requests per minute
response time
filter based on type of request, http status, os, os version.
Zenoss would read in a log file in csv format every 5 minutes with the latest snapshot of data. Ideally the custom page would have drop-down filters for begin time, end time, request type, status, os, version that would create a very customized view into the data.
Is this possible? I don't think zenoss is necessarily the recommended platform for this type of data representation, but can this be achieved via a custom page that we can develop?
zenoss
In zenoss we are trying to evaluate if it is feasible to build a custom page that allows a user to graph data such as:
requests per minute
response time
filter based on type of request, http status, os, os version.
Zenoss would read in a log file in csv format every 5 minutes with the latest snapshot of data. Ideally the custom page would have drop-down filters for begin time, end time, request type, status, os, version that would create a very customized view into the data.
Is this possible? I don't think zenoss is necessarily the recommended platform for this type of data representation, but can this be achieved via a custom page that we can develop?
zenoss
zenoss
edited 14 mins ago
Michael Hampton♦
176k27321651
176k27321651
asked Feb 6 '15 at 21:17
ssbstsssbsts
82
82
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Zenoss: you can read csv file every 5 minutes and parse data (you will need to develop custom parser) into rrd files; metrics (datapoints) will be requests per minute and response time - no problem.
But IMHO "filter based on type of request, http status, os, os version" is not standard feature of monitoring tool (=collect metric values and graph/alert these values). I can imagine implementation in Zenoss, but you will need to implement your own "datastore", which will be able to filter data (some kind of database with context/relations). It'll be a lot of work. It can be easier in Zenoss 5 (officially not released), because it will have OpenTSDB, but still a lot of work.
I recommend to use (evaluate) another (log) tools: e.g. logstash/splunk + grafana/kibana.
thanks for your comment. Splunk might be an option for us and something that crossed my mind. I might think a little more about that possibility.
– ssbsts
Feb 9 '15 at 3:29
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fserverfault.com%2fquestions%2f665685%2fzenoss-custom-page-with-custom-graphs%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
Zenoss: you can read csv file every 5 minutes and parse data (you will need to develop custom parser) into rrd files; metrics (datapoints) will be requests per minute and response time - no problem.
But IMHO "filter based on type of request, http status, os, os version" is not standard feature of monitoring tool (=collect metric values and graph/alert these values). I can imagine implementation in Zenoss, but you will need to implement your own "datastore", which will be able to filter data (some kind of database with context/relations). It'll be a lot of work. It can be easier in Zenoss 5 (officially not released), because it will have OpenTSDB, but still a lot of work.
I recommend to use (evaluate) another (log) tools: e.g. logstash/splunk + grafana/kibana.
thanks for your comment. Splunk might be an option for us and something that crossed my mind. I might think a little more about that possibility.
– ssbsts
Feb 9 '15 at 3:29
add a comment |
Zenoss: you can read csv file every 5 minutes and parse data (you will need to develop custom parser) into rrd files; metrics (datapoints) will be requests per minute and response time - no problem.
But IMHO "filter based on type of request, http status, os, os version" is not standard feature of monitoring tool (=collect metric values and graph/alert these values). I can imagine implementation in Zenoss, but you will need to implement your own "datastore", which will be able to filter data (some kind of database with context/relations). It'll be a lot of work. It can be easier in Zenoss 5 (officially not released), because it will have OpenTSDB, but still a lot of work.
I recommend to use (evaluate) another (log) tools: e.g. logstash/splunk + grafana/kibana.
thanks for your comment. Splunk might be an option for us and something that crossed my mind. I might think a little more about that possibility.
– ssbsts
Feb 9 '15 at 3:29
add a comment |
Zenoss: you can read csv file every 5 minutes and parse data (you will need to develop custom parser) into rrd files; metrics (datapoints) will be requests per minute and response time - no problem.
But IMHO "filter based on type of request, http status, os, os version" is not standard feature of monitoring tool (=collect metric values and graph/alert these values). I can imagine implementation in Zenoss, but you will need to implement your own "datastore", which will be able to filter data (some kind of database with context/relations). It'll be a lot of work. It can be easier in Zenoss 5 (officially not released), because it will have OpenTSDB, but still a lot of work.
I recommend to use (evaluate) another (log) tools: e.g. logstash/splunk + grafana/kibana.
Zenoss: you can read csv file every 5 minutes and parse data (you will need to develop custom parser) into rrd files; metrics (datapoints) will be requests per minute and response time - no problem.
But IMHO "filter based on type of request, http status, os, os version" is not standard feature of monitoring tool (=collect metric values and graph/alert these values). I can imagine implementation in Zenoss, but you will need to implement your own "datastore", which will be able to filter data (some kind of database with context/relations). It'll be a lot of work. It can be easier in Zenoss 5 (officially not released), because it will have OpenTSDB, but still a lot of work.
I recommend to use (evaluate) another (log) tools: e.g. logstash/splunk + grafana/kibana.
answered Feb 6 '15 at 23:51
Jan GarajJan Garaj
6271411
6271411
thanks for your comment. Splunk might be an option for us and something that crossed my mind. I might think a little more about that possibility.
– ssbsts
Feb 9 '15 at 3:29
add a comment |
thanks for your comment. Splunk might be an option for us and something that crossed my mind. I might think a little more about that possibility.
– ssbsts
Feb 9 '15 at 3:29
thanks for your comment. Splunk might be an option for us and something that crossed my mind. I might think a little more about that possibility.
– ssbsts
Feb 9 '15 at 3:29
thanks for your comment. Splunk might be an option for us and something that crossed my mind. I might think a little more about that possibility.
– ssbsts
Feb 9 '15 at 3:29
add a comment |
Thanks for contributing an answer to Server Fault!
- 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%2fserverfault.com%2fquestions%2f665685%2fzenoss-custom-page-with-custom-graphs%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