<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Alfresco Monitoring with Prometheus and Grafana in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112134#M31260</link>
    <description>&lt;P&gt;Thanks Alex for the additional information. It will be really helpful for the users who are trying this out.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Sep 2020 03:22:34 GMT</pubDate>
    <dc:creator>karthick</dc:creator>
    <dc:date>2020-09-09T03:22:34Z</dc:date>
    <item>
      <title>Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112132#M31258</link>
      <description>&lt;P&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;Overview&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;There are many ways in which the activities and operations performed in Alfresco Content Services can be measured and montiored. In this post, we are going to take a look at montioring Alfresco using monitoring systems such as Prometheus &amp;amp; Grafana.&amp;nbsp;Alfresco repository now exposes an endpoint /alfresco/s/prometheus that is compatible with the&amp;nbsp;&lt;A href="https://prometheus.io/" target="_blank" rel="nofollow noopener noreferrer"&gt;Prometheus&lt;/A&gt;&amp;nbsp;scarping end point. Data such as JVM Metrics, Database metrics &amp;amp; REST API metrics are currently captured and exposed using the above mentioned endpoint. Prometheus data source can be integrated with the Grafana application where the Alfresco real time activities can be viewed and monitored in a more user-friendly manner.&lt;/P&gt;&lt;P&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;Configure/Enable Prometheus endpoint metrics in ACS&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Though the Prometheus endpoint is available by default in all ACS6.1.x deployments, in order to enable and capture the metrics following properties must be added in ACS alfresco-global.properties file.&amp;nbsp;By default&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;metrics.enabled&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;is set to false, so accessing the Prometheus endpoint/webscript without these changes will return HTTP 404 error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;metrics.enabled=true&lt;BR /&gt;metrics.dbMetricsReporter.enabled=true&lt;BR /&gt;metrics.dbMetricsReporter.query.enabled=true&lt;BR /&gt;metrics.dbMetricsReporter.query.statements.enabled=true&lt;BR /&gt;metrics.jvmMetricsReporter.enabled=true&lt;BR /&gt;metrics.restMetricsReporter.enabled=true&lt;BR /&gt;metrics.restMetricsReporter.path.enabled=true&lt;/P&gt;&lt;P&gt;Once enabled, accessing the endpoint URL will display JVM metrics, DB metrics &amp;amp; REST API metrics related to Alfresco.&lt;/P&gt;&lt;P&gt;# HELP system_cpu_usage The "recent cpu usage" for the whole system&lt;BR /&gt;# TYPE system_cpu_usage gauge&lt;BR /&gt;system_cpu_usage 0.16914462251399884&lt;BR /&gt;# HELP jvm_threads_peak The peak live thread count since the Java virtual machine started or peak was reset&lt;BR /&gt;# TYPE jvm_threads_peak gauge&lt;BR /&gt;jvm_threads_peak 169.0&lt;BR /&gt;# HELP jvm_threads_daemon The current number of live daemon threads&lt;BR /&gt;# TYPE jvm_threads_daemon gauge&lt;BR /&gt;jvm_threads_daemon 132.0&lt;/P&gt;&lt;P&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;Install &amp;amp; Configure Prometheus&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Depending on the operating system you use, Prometheus can be installed using Distributed installer files, from Source or using Docker. Reference -&amp;nbsp;&lt;A href="https://prometheus.io/docs/prometheus/latest/installation/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://prometheus.io/docs/prometheus/latest/installation/&lt;/A&gt;&amp;nbsp;&amp;amp;&amp;nbsp;&lt;A href="https://prometheus.io/docs/prometheus/latest/getting_started/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://prometheus.io/docs/prometheus/latest/getting_started/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In this case I am using Mac, so I used Homebrew to install Prometheus.&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;brew install prometheus&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Before starting up the Prometheus instance, you would need to configure the Alfresco metrics path and the appropriate Target URL (ACS Host URL) in prometheus YAML config file (prometheus.yml). You can get a copy of the default YAML file here -&amp;nbsp;&lt;A href="https://github.com/prometheus/prometheus/blob/master/documentation/examples/prometheus.yml" target="_self" rel="nofollow noopener noreferrer"&gt;YAML Config&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Key properties to note are 1)&amp;nbsp;metrics_path &amp;amp; 2)&amp;nbsp;targets in the&amp;nbsp;&lt;STRONG&gt;scrape_configs&amp;nbsp;&lt;/STRONG&gt;section. Update the target property based on your ACS instance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;Example:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;metrics_path: /alfresco/s/prometheus&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;targets: ['localhost:8080']&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Save the file and then copy the file to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;/etc/prometheus directory.&amp;nbsp;&lt;/STRONG&gt;Once done&amp;nbsp;run the following command to start Prometheus&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;prometheus --config.file "/etc/prometheus/prometheus.yml"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Monitor the logs and once the service is started, navigate to&amp;nbsp;&lt;A href="http://localhost:9090/config" target="_blank" rel="noopener nofollow noreferrer"&gt;http://localhost:9090/config&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(listens to port 9090 by default). The config page should reflect the metrics_path &amp;amp; targets value that was done earlier.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Targets page -&amp;nbsp;&lt;A href="http://localhost:9090/targets" target="_blank" rel="noopener nofollow noreferrer"&gt;http://localhost:9090/targets&lt;/A&gt;&amp;nbsp;will display the Alfresco Prometheus endpoint URL. Verify that it is correctly set such as -&amp;nbsp;&lt;A href="http://defaultbuilds-macbook-pro-3.local:8080/alfresco/s/prometheus" target="_blank" rel="noopener nofollow noreferrer"&gt;http://localhost:8080/alfresco/s/prometheus&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;Install Grafana&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;brew install grafana&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Start Grafana using&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;brew services start grafana&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class="s1"&gt;and monitor the startup logs. Navigate to Grafana dashboard on&amp;nbsp;&lt;A href="http://localhost:3000/" target="_self" rel="nofollow noopener noreferrer"&gt;http://localhost:3000/&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;In order to display and monitor the Alfresco metrics in the Grafana Dashboard, following steps are necessary.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;1) Create a Promethues data source by clicking on the "Create your first data source" link in the home page. Select Prometheus and Enter&amp;nbsp;http://localhost:9090 in the URL field. If "Basic Authenticaton" is selected, uncheck it and save the data source.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;2) Create/Import dashboards to Grafana app and monitor the real-time metrics in Dashboard view. Sample dashboard JSON files are available in -&amp;nbsp;&lt;A href="https://github.com/Alfresco/acs-packaging/tree/master/docs/micrometer" target="_blank" rel="noopener nofollow noreferrer"&gt;https://github.com/Alfresco/acs-packaging/tree/master/docs/micrometer&lt;/A&gt;. Three different JSON files covering DB Metrics, JVM Metrics &amp;amp; REST API metrics are available in GitHub. While Importing the JSON file make sure the correct Promethues data source is selected.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Once the above steps are done, real-time metrics can be seen and monitored in the Grafana dashboards.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;&lt;SPAN class="s1"&gt;References&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;FONT size="3"&gt;&lt;SPAN class="s1"&gt;Thanks to all the below references&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;FONT size="3"&gt;&lt;SPAN class="s1"&gt;&lt;A href="https://github.com/Alfresco/acs-packaging/tree/master/docs/micrometer" target="_blank" rel="noopener nofollow noreferrer"&gt;https://github.com/Alfresco/acs-packaging/tree/master/docs/micrometer&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;FONT size="3"&gt;&lt;SPAN class="s1"&gt;&lt;A href="https://github.com/prometheus/prometheus/blob/master/documentation/examples/prometheus.yml" target="_blank" rel="noopener nofollow noreferrer"&gt;https://github.com/prometheus/prometheus/blob/master/documentation/examples/prometheus.yml&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;FONT size="3"&gt;&lt;SPAN class="s1"&gt;&lt;A href="https://www.prometheusbook.com/MonitoringWithPrometheus_sample.pdf" target="_blank" rel="noopener nofollow noreferrer"&gt;https://www.prometheusbook.com/MonitoringWithPrometheus_sample.pdf&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 01:04:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112132#M31258</guid>
      <dc:creator>karthick</dc:creator>
      <dc:date>2019-11-08T01:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112133#M31259</link>
      <description>&lt;P&gt;Great article Karthick - just to perhaps help those who (like me initially) are struggling to figure out what to put into the Prometheus configuration (.yml) file, here is what I have:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;- &lt;/SPAN&gt;&lt;SPAN&gt;job_name&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'acs'&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; metrics_path&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;/alfresco/s/prometheus&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; static_configs&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; - &lt;/SPAN&gt;&lt;SPAN&gt;targets&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - &lt;/SPAN&gt;&lt;SPAN&gt;localhost:8080&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Additionally, to create a&amp;nbsp; datasource in Grafana via a RESTful call for this example&lt;BR /&gt;POST &lt;FONT face="courier new,courier"&gt;http://localhost:3000/api/datasources&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;BODY (json)&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;{&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"name": "DS_PROMETHEUS",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"type": "prometheus",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"url": "http://localhost:9090",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"access": "proxy",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"org_id": 1,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"is_default": true,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"version": 1,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;"editable": true&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;}&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 18:24:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112133#M31259</guid>
      <dc:creator>astrachan</dc:creator>
      <dc:date>2020-09-07T18:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112134#M31260</link>
      <description>&lt;P&gt;Thanks Alex for the additional information. It will be really helpful for the users who are trying this out.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 03:22:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112134#M31260</guid>
      <dc:creator>karthick</dc:creator>
      <dc:date>2020-09-09T03:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112135#M31261</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/51355"&gt;@astrachan&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the extra info - really helpful!&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 09:19:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112135#M31261</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-09-09T09:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112136#M31262</link>
      <description>&lt;P&gt;Hi,greet article&lt;/P&gt;&lt;P&gt;does&amp;nbsp;Prometheus &amp;nbsp; integrated in community edition please ?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jul 2021 10:06:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112136#M31262</guid>
      <dc:creator>zayzou</dc:creator>
      <dc:date>2021-07-08T10:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112137#M31263</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/86339"&gt;@zayzou&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might find the recent &lt;A href="https://www.alfresco.com/events/webinars/tech-talk-live-130?salesplay=Community_to_Enterprise&amp;amp;amp;utm_source=hub&amp;amp;amp;utm_medium=hub&amp;amp;amp;utm_campaign=20210609_GLO_GLO_DG_Webinar_NP_C2E_TechTalk_live_130-Hub" target="_self" rel="nofollow noopener noreferrer"&gt;Alfresco Tech Talk Live&lt;/A&gt; on this subject useful.&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 12:59:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112137#M31263</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2021-07-14T12:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112138#M31264</link>
      <description>&lt;P&gt;Hi Karthick,&lt;/P&gt;&lt;P&gt;Thanks for the details, I followed your article&lt;/P&gt;&lt;P&gt;For my case I installed both "prometheus and grafana" on ubuntu-22 host.&lt;/P&gt;&lt;P&gt;kept firewall off in both.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;so Prometheus and Grafana on one VM host: &lt;A href="http://192.168.29.187:9090/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://192.168.29.187:9090/&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;alfresco on other VM host:&amp;nbsp;&lt;A href="http://192.168.29.152:8080/alfresco/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://192.168.29.152:8080/alfresco/&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;step 1)&lt;/STRONG&gt; installed prometheus successfully on port 9090&lt;/P&gt;&lt;P&gt;set below values in &lt;STRONG&gt;alfresco-global.properties&lt;/STRONG&gt; file&lt;/P&gt;&lt;PRE&gt;metrics.enabled=true
metrics.dbMetricsReporter.enabled=true
metrics.dbMetricsReporter.query.enabled=true
metrics.dbMetricsReporter.query.statements.enabled=true
metrics.jvmMetricsReporter.enabled=true
metrics.restMetricsReporter.enabled=true
metrics.restMetricsReporter.path.enabled=true&lt;/PRE&gt;&lt;P&gt;and my for prometheus&amp;nbsp;&lt;/P&gt;&lt;P&gt;prometheus.yml&lt;/P&gt;&lt;PRE&gt;- job_name: 'prometheus-alfresco'
&amp;nbsp; metrics_path: /alfresco/s/prometheus
  static_configs:
&amp;nbsp;   - targets:
&amp;nbsp; &amp;nbsp; &amp;nbsp;  -&amp;nbsp;192.168.29.152:8080&lt;/PRE&gt;&lt;P&gt;Now when I check at prometheus dashboard targets&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://192.168.29.187:9090/targets" target="_blank" rel="nofollow noopener noreferrer"&gt;http://192.168.29.187:9090/targets&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;it gives me endpoint for alfresco but showing down always, even alfresco is running on 8080 with added properties.&lt;/P&gt;&lt;P&gt;End point looks like&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="promethus_0001.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/365i10F1AA58EBDFECEF/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am new to both systems, so don't know , how do I get alfresco stats plus infrastructure stats into grafana visual dashboard.&lt;/P&gt;&lt;P&gt;And how do I import or see in Grafana, that also don't know&lt;/P&gt;&lt;P&gt;I want to monitor CPU / RAM / Network / Alfresco Load / JVM etc..&amp;nbsp;&lt;/P&gt;&lt;P&gt;I installed node exporter as well. but not sure how do I use it here, please help.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ghanshyam R&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 11:33:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112138#M31264</guid>
      <dc:creator>grathod</dc:creator>
      <dc:date>2024-02-26T11:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Monitoring with Prometheus and Grafana</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112139#M31265</link>
      <description>&lt;P&gt;This feature is only available for Alfresco Enterprise.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 15:08:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-monitoring-with-prometheus-and-grafana/m-p/112139#M31265</guid>
      <dc:creator>angelborroy</dc:creator>
      <dc:date>2024-02-26T15:08:22Z</dc:date>
    </item>
  </channel>
</rss>

