Is Prometheus/Grafana works on Sun-Solaris Operating System too

2,177 views
Skip to first unread message

Rajendra Samala

unread,
Aug 6, 2018, 5:12:06 AM8/6/18
to Prometheus Users
Hi,

I am yet to install Promethues for network monitoring, in download I haven't found the .zip for any Sun-Solaris Operating System too.


Rajendra Samala.

Julius Volz

unread,
Aug 6, 2018, 5:23:56 AM8/6/18
to Rajendra Samala, Prometheus Users
We don't include Solaris in the official builds (https://github.com/prometheus/prometheus/blob/master/.promu.yml#L25-L48), but Go in general supports Solaris for amd64 (not Sparc). Not sure why we don't build for Solaris, but you could try building it yourself on Solaris to see if it works.

--
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-users+unsubscribe@googlegroups.com.
To post to this group, send email to prometheus-users@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/9fdd2d3c-0a87-4802-ba21-44d2c2da2254%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Brian Brazil

unread,
Aug 6, 2018, 5:47:26 AM8/6/18
to Julius Volz, Rajendra Samala, Prometheus Users
On 6 August 2018 at 10:23, Julius Volz <juliu...@gmail.com> wrote:
We don't include Solaris in the official builds (https://github.com/prometheus/prometheus/blob/master/.promu.yml#L25-L48), but Go in general supports Solaris for amd64 (not Sparc). Not sure why we don't build for Solaris, but you could try building it yourself on Solaris to see if it works.

There were build issues with our old logging library and Solaris at one point.

Brian
 

On Mon, Aug 6, 2018 at 11:12 AM, Rajendra Samala <samal...@gmail.com> wrote:
Hi,

I am yet to install Promethues for network monitoring, in download I haven't found the .zip for any Sun-Solaris Operating System too.


Rajendra Samala.

--
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-users+unsubscribe@googlegroups.com.
To post to this group, send email to prometheus-users@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/9fdd2d3c-0a87-4802-ba21-44d2c2da2254%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-users+unsubscribe@googlegroups.com.
To post to this group, send email to prometheus-users@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--

Rajendra Samala

unread,
Aug 6, 2018, 5:59:06 AM8/6/18
to Prometheus Users


Hi Julius & Brain,

Thanks for the response, so  I can download amd64 (not Sparc) and check for the feasibility what I understood from you.

What kind of configuration (i.e. RAM size, number of Cores, Storage) is required to monitor the infra with having an inventory (230 Physical Servers , 500 Virtual Machines , 70 DB Instances , 350 NW Devices, 5500 End users , 160 Office Locations ).

Please do guide for the same.

Rajendra Samala

Julius Volz

unread,
Aug 6, 2018, 6:14:12 AM8/6/18
to Rajendra Samala, Prometheus Users
On Mon, Aug 6, 2018 at 11:59 AM, Rajendra Samala <samal...@gmail.com> wrote:


Hi Julius & Brain,

Thanks for the response, so  I can download amd64 (not Sparc) and check for the feasibility what I understood from you.

You can't use any of our official builds, because they are not for Solaris. You'll need to try and build Prometheus yourself for GOOS=solaris and GOARCH=amd64.
 
What kind of configuration (i.e. RAM size, number of Cores, Storage) is required to monitor the infra with having an inventory (230 Physical Servers , 500 Virtual Machines , 70 DB Instances , 350 NW Devices, 5500 End users , 160 Office Locations ).

You'll probably want multiple Prometheus servers for that (and as close as possible to each location), but it's hard to give exact guidelines around numbers like this because it depends mostly on the number of time series that you are scraping, not the number of targets. Here's one example of what Jack Neely managed to achieve on a big Prometheus server in terms of RAM, time series, and sample ingestion rate: https://groups.google.com/forum/#!topic/prometheus-users/GWeOKPNhZkg
 
Please do guide for the same.

Rajendra Samala

--
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-users+unsubscribe@googlegroups.com.
To post to this group, send email to prometheus-users@googlegroups.com.

Rajendra Samala

unread,
Aug 6, 2018, 7:50:44 AM8/6/18
to Prometheus Users
Hi,

Could you help me, why I am not able to find the download of  'node_exporter' under OS - Windows.

Rajendra Samala 

Julius Volz

unread,
Aug 6, 2018, 7:52:57 AM8/6/18
to Rajendra Samala, Prometheus Users
Hi,

The Node Exporter is mainly for Unix / Linux systems and wouldn't produce too much useful output on Windows.

For Windows, use the WMI Exporter instead: https://github.com/martinlindhe/wmi_exporter

Cheers,
Julius

--
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-users+unsubscribe@googlegroups.com.
To post to this group, send email to prometheus-users@googlegroups.com.

Rajendra Samala

unread,
Aug 6, 2018, 8:16:09 AM8/6/18
to Prometheus Users
Hi Julius,

Thanks and appreciate your swift response, as I understood that I can use wmi_exporter instead of node_exporter  for WINDOWS.

Is this (i.e. wmi_exporter) works as same node_exporter...?, please guide, as I need to install and start measuring the metrics for two servers. on WINDOWS-OS
 
Rajendra Samala.

Julius Volz

unread,
Aug 6, 2018, 8:25:53 AM8/6/18
to Rajendra Samala, Prometheus Users
Hi,

The WMI exporter exposes a different set of metrics that are specific to Windows (see the README.md of the project). I have never used it though. I would recommend just installing it and looking at the available metrics on its /metrics HTTP endpoint. Note that some metrics collectors are disabled by default in the WMI exporter, but the most common ones should be there by default.

Cheers,
Julius

--
You received this message because you are subscribed to the Google Groups "Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-users+unsubscribe@googlegroups.com.
To post to this group, send email to prometheus-users@googlegroups.com.

Rajendra Samala

unread,
Aug 6, 2018, 10:12:05 AM8/6/18
to Prometheus Users

Hi Julius,

Thanks for your suggestions and HELP, will get back to you soon, if I do need any guidance from you.

THANKS ONCE AGAIN..... :) 
 
Rajendra Samala.

Rajendra Samala

unread,
Aug 6, 2018, 11:46:15 AM8/6/18
to Prometheus Users


On Monday, August 6, 2018 at 2:42:06 PM UTC+5:30, Rajendra Samala wrote:
 
Hi Julius,

Is Prometheus supports Oracle, MySql or any other DataBase or its having its own-database.


Rajendra Samala.

von Neudeck, Nicolai

unread,
Aug 7, 2018, 5:48:23 AM8/7/18
to Rajendra Samala, Prometheus Users
Hi Rajendra,



Is has its own DB included in the server binary. But you can integrate third-party remote storage.

Please look into the docs for further details:

https://prometheus.io/docs/prometheus/latest/storage/

https://prometheus.io/docs/operating/integrations/#remote-endpoints-and-storage



Have a nice day,



Nicolai von Neudeck



-----Ursprüngliche Nachricht-----

Von: <promethe...@googlegroups.com> im Auftrag von Rajendra Samala <samal...@gmail.com>

Datum: Montag, 6. August 2018 um 17:46

An: Prometheus Users <promethe...@googlegroups.com>

Betreff: [prometheus-users] Re: Is Prometheus/Grafana works on Sun-Solaris Operating System too
--

You received this message because you are subscribed to the Google Groups "Prometheus Users" group.

To unsubscribe from this group and stop receiving emails from it, send an email to

prometheus-use...@googlegroups.com.

To post to this group, send email to

promethe...@googlegroups.com <mailto:promethe...@googlegroups.com>.

To view this discussion on the web visit

https://groups.google.com/d/msgid/prometheus-users/4efe8e31-a0dd-4432-9a3f-f1ade6756e80%40googlegroups.com <https://groups.google.com/d/msgid/prometheus-users/4efe8e31-a0dd-4432-9a3f-f1ade6756e80%40googlegroups.com?utm_medium=email&utm_source=footer>.

Rajendra Samala

unread,
Aug 7, 2018, 6:20:26 AM8/7/18
to Prometheus Users
Hi Team,

Need your expertise to know for the following are monitored by Prometheus, if Yes then how and where do I find the required exports.
  • Physical Servers, 
  • Virtual Machines, 
  • DataBase Instances (Oracle, DB2, Sybase, MySQL, Postgress) 
  • Network Devices, 

Rajendra Samala.

Alexander Golikov

unread,
Dec 23, 2019, 4:51:08 AM12/23/19
to Prometheus Users
Hello,
I also have to monitor Oracle SPARC Solaris Servers. 
Now they are monitored by my own nagios plugins written on shell. But we are trying to switch from them to another monitoring system.
I discovered that Prometheus Python library supports SPARC Solaris, also SPARC Solaris supports Python psutil library (I recommend you to compile psutils via pip and not install via 'pkg install' due to errors regurding network devices in repo version)
I succeed to write my own Python exporter for SPARC Solaris like node_exporter for linux.

--
Alexander

Malaka Fernando

unread,
Jul 13, 2020, 10:00:56 PM7/13/20
to Prometheus Users
Hello Alexander Golikov;


Is there any way you could share the Solaris sparc exporters you build. 

Kind regards

Mal

Farid

unread,
Mar 1, 2021, 11:31:48 AM3/1/21
to Prometheus Users
Hello Malaka,

You may check it on author's GitHub page:

Shuai Shao

unread,
Apr 23, 2021, 1:57:23 AM4/23/21
to Prometheus Users

At present, does Prometheus have an exporter service that directly monitors Sybase System. Can you install it? Please help me, thank you
Reply all
Reply to author
Forward
0 new messages