Performance Metrics¶
Emakin provides internal application performance metrics in both JSON and text-based formats. These metrics offer valuable insights into the system's operational efficiency.
By default, only web request metrics are collected. Workflow metrics are disabled initially but can be enabled by setting the AppMetrics/Enabled
flag to "true".
Emakin also supports the open metrics format based on Prometheus. This can be enabled by setting the AppMetrics/Prometheus/Enabled
flag to "true". When enabled, the default metrics endpoint will output metrics in the Prometheus format.
Text Format¶
Text-based application metrics can be accessed through the URL: http://<servername>:7180/metrics-text
.
Sample Output¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
JSON Format¶
JSON-based application metrics can be accessed through the URL: http://<servername>:7180/metrics
.
Sample Output¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|