*** Tom-Tom has joined #openstack-monasca | 02:08 | |
*** Tom-Tom_ has joined #openstack-monasca | 02:38 | |
*** Tom-Tom has quit IRC | 02:41 | |
*** Tom-Tom has joined #openstack-monasca | 03:01 | |
*** Tom-Tom_ has quit IRC | 03:03 | |
*** Tom-Tom has quit IRC | 03:48 | |
*** Tom-Tom has joined #openstack-monasca | 03:49 | |
*** Tom-Tom has quit IRC | 03:54 | |
*** AlexeyAbashkin has joined #openstack-monasca | 05:04 | |
*** AlexeyAbashkin has quit IRC | 05:23 | |
*** AlexeyAbashkin has joined #openstack-monasca | 05:28 | |
*** AlexeyAbashkin has quit IRC | 05:35 | |
*** Tom-Tom has joined #openstack-monasca | 05:57 | |
*** sameer has joined #openstack-monasca | 06:26 | |
*** amofakhar has joined #openstack-monasca | 06:29 | |
sameer | monasca alarm-definition-create alarmPerHost 'cpu.load_avg_1_min > 0' | 06:35 |
---|---|---|
sameer | getting this error "The repository was unable to process your request (HTTP 500) 1054 Unknown column 'is_deterministic' in 'field list'" | 06:35 |
sameer | also metric creation is successful but its showing empty list | 06:39 |
*** pcaruana has joined #openstack-monasca | 06:43 | |
*** dougsz has joined #openstack-monasca | 07:24 | |
*** AlexeyAbashkin has joined #openstack-monasca | 07:30 | |
*** tobiajo has joined #openstack-monasca | 07:40 | |
*** amofakhar has quit IRC | 07:58 | |
*** amofakhar has joined #openstack-monasca | 07:59 | |
*** amofakhar has quit IRC | 08:01 | |
*** ammo has joined #openstack-monasca | 08:01 | |
openstackgerrit | Merged openstack/monasca-statsd master: Remove repository section from README https://review.openstack.org/566861 | 08:19 |
*** tobiajo has quit IRC | 09:02 | |
*** ammo has quit IRC | 09:09 | |
sameer | monasca alarm-definition-create alarmPerHost 'cpu.load_avg_1_m | 09:24 |
sameer | getting this error "The repository was unable to process your request (HTTP 500) 1054 Unknown column 'is_deterministic' in 'field list'" | 09:25 |
sameer | also metric creation is successful but its showing empty list | 09:25 |
*** amofakhar has joined #openstack-monasca | 09:46 | |
*** amofakhar has quit IRC | 09:50 | |
*** amofakhar has joined #openstack-monasca | 09:51 | |
*** tobiajo has joined #openstack-monasca | 09:57 | |
*** amofakhar has quit IRC | 10:06 | |
*** amofakhar has joined #openstack-monasca | 10:12 | |
*** nicolasbock has joined #openstack-monasca | 10:33 | |
dougsz | sameer: I don't have any specific help for you, but as a general approach it's worth breaking the problem up. No metrics showing? Are they in your time series database? Not there? Check that they come in via the Monasca API logs... | 10:41 |
dougsz | You might also try tailing the Monasca API as you create the alarm, inspecting the POST via tcpdump or verbose mode to make sure it looks valid etc. | 10:43 |
dougsz | s/Monasca API/Monasca API log file | 10:44 |
*** tobiajo has quit IRC | 10:53 | |
*** Tom-Tom has quit IRC | 10:57 | |
*** Tom-Tom has joined #openstack-monasca | 10:57 | |
*** Tom-Tom has quit IRC | 11:02 | |
*** tobiajo has joined #openstack-monasca | 11:08 | |
openstackgerrit | Doug Szumski proposed openstack/monasca-common master: Factor out REST utils from monasca-api https://review.openstack.org/563103 | 11:21 |
openstackgerrit | Doug Szumski proposed openstack/monasca-common master: Use oslo encode utils for python 3 compatibility https://review.openstack.org/569384 | 11:21 |
*** Tom-Tom has joined #openstack-monasca | 11:28 | |
sameer | dougsz: how to check if its present in TSB ? | 11:30 |
sameer | I am using influxdb db for staring metric logs | 11:30 |
sameer | *TSDB | 11:30 |
dougsz | sameer: How are you viewing the metrics? With Grafana? | 11:30 |
dougsz | That's one way. | 11:31 |
dougsz | Another way - just run a query against InfluxDB | 11:31 |
sameer | yes checking with query aainst influxdb | 11:31 |
sameer | but getting this error " ERR: retention policy not found: " | 11:32 |
*** Tom-Tom has quit IRC | 11:32 | |
sameer | even if i have | 11:33 |
sameer | > show retention policies; name duration shardGroupDuration replicaN default ---- -------- ------------------ -------- ------- autogen 0s 168h0m0s 1 false persister_all 2160h0m0s 24h0m0s 1 false mon_policy 1234h0m0s 24h0m0s 1 false day_only 214h0m0s 24h0m0s 1 true | 11:34 |
sameer | all these retention policies | 11:34 |
dougsz | It sounds like you have multitude or problems | 11:35 |
dougsz | s/or/of | 11:35 |
dougsz | I would suggest looking at an architecture diagram of Monasca, and starting from the Monasca API check that each component that you are using is working correctly. | 11:36 |
sameer | yes i have checked that | 11:38 |
sameer | all services are working | 11:38 |
sameer | able to create metrics but its nt fetching from db | 11:38 |
sameer | metric list is nt wrking , so can i guess its persister or influxdb issue ? | 11:40 |
dougsz | That is where I would be looking. You can run a kafka console consumer to view metrics being written to kafka. If you see them there, then the next thing is, is the persister writing them to influxDB? and if it is, can you get them directly out of influxdb? And if that works, can you get them out of the monasca API? | 11:42 |
dougsz | I have seen the persister get 'jammed' on bad metrics before | 11:43 |
dougsz | It's worth checking the logs carefully, in debug mode | 11:43 |
sameer | we hav to configre persister to store metrics in db ? | 11:45 |
dougsz | I don't know how you're deploying, but yes, the persister reads metrics from kafka and saves them in the time series database. | 11:45 |
sameer | time series db is influxdb ri8 ? | 11:48 |
sameer | yes you are right about persister | 11:48 |
sameer | i want to know abt how persister saves metrics | 11:50 |
dougsz | sameer, check out the config file for monasca-persister | 12:04 |
sameer | persister-config.yaml is the only file we have to configure ri8 ? | 12:05 |
dougsz | sameer: https://github.com/openstack/monasca-persister/tree/master/config-generator | 12:44 |
*** amofakhar has quit IRC | 13:06 | |
openstackgerrit | Doug Szumski proposed openstack/monasca-log-api master: Minimum viable log query API for Elasticsearch https://review.openstack.org/570599 | 13:10 |
*** ammo has joined #openstack-monasca | 13:27 | |
*** ammo has quit IRC | 13:32 | |
*** amofakhar has joined #openstack-monasca | 13:33 | |
*** rbrndt has joined #openstack-monasca | 14:20 | |
*** ammo has joined #openstack-monasca | 14:22 | |
*** amofakhar has quit IRC | 14:25 | |
*** ammo has quit IRC | 14:26 | |
*** tobiajo has quit IRC | 15:06 | |
*** pcaruana has quit IRC | 15:28 | |
*** AlexeyAbashkin has quit IRC | 15:37 | |
*** dougsz has quit IRC | 17:28 | |
*** AlexeyAbashkin has joined #openstack-monasca | 17:32 | |
*** sgrasley has joined #openstack-monasca | 17:43 | |
*** rbrndt has quit IRC | 17:45 | |
*** AlexeyAbashkin has quit IRC | 17:45 | |
*** AlexeyAbashkin has joined #openstack-monasca | 17:45 | |
*** AlexeyAbashkin has quit IRC | 17:45 | |
*** AlexeyAbashkin has joined #openstack-monasca | 17:46 | |
*** Tom-Tom has joined #openstack-monasca | 17:58 | |
*** Tom-Tom has quit IRC | 18:02 | |
*** Alexey_Abashkin has joined #openstack-monasca | 18:04 | |
*** AlexeyAbashkin has quit IRC | 18:07 | |
*** Alexey_Abashkin is now known as AlexeyAbashkin | 18:07 | |
*** AlexeyAbashkin has quit IRC | 18:13 | |
*** rbrndt has joined #openstack-monasca | 18:50 | |
*** dougsz has joined #openstack-monasca | 19:24 | |
*** toabctl has quit IRC | 19:33 | |
*** toabctl has joined #openstack-monasca | 19:36 | |
*** dougsz has quit IRC | 20:06 | |
*** AlexeyAbashkin has joined #openstack-monasca | 20:33 | |
*** AlexeyAbashkin has quit IRC | 20:50 | |
*** Tom-Tom has joined #openstack-monasca | 21:58 | |
*** Tom-Tom has quit IRC | 22:03 | |
*** rbrndt has quit IRC | 22:43 | |
*** rbrndt has joined #openstack-monasca | 22:43 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!