Ejemplo n.º 1
0
 def get(self, request, *args, **kwargs):
     project_name = self.kwargs['project_name']
     cluster = Cluster.objects.get(name=project_name)
     response = HttpResponse(content_type='application/json')
     if cluster.status == Cluster.CLUSTER_STATUS_READY or cluster.status == Cluster.CLUSTER_STATUS_INSTALLING:
         return Response(data={'msg': ': 集群未创建'}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
     cluster_monitor = ClusterMonitor(cluster)
     try:
         result = cluster_monitor.get_kubernetes_status()
     except Exception as e:
         logger.error(e, exc_info=True)
         return Response(data={'msg': ': 数据读取失败!'}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
     response.write(json.dumps(result))
     return response
Ejemplo n.º 2
0
 def get(self, request, *args, **kwargs):
     project_name = self.kwargs['project_name']
     cluster = Cluster.objects.get(name=project_name)
     response = HttpResponse(content_type='application/json')
     if cluster.status == Cluster.CLUSTER_STATUS_READY or cluster.status == Cluster.CLUSTER_STATUS_INSTALLING:
         return Response(data={'msg': ': 集群未创建'}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
     cluster_monitor = ClusterMonitor(cluster)
     # host = "prometheus.apps." + cluster.name + "." + cluster.cluster_doamin_suffix
     # config = {
     #     'host': host
     # }
     # prometheus_client = PrometheusClient(config)
     # result = prometheus_client.handle_targets_message(prometheus_client.targets())
     try:
         result = cluster_monitor.get_kubernetes_status()
     except Exception as e:
         logger.error(e, exc_info=True)
         return Response(data={'msg': ': 数据读取失败!'}, status=status.HTTP_500_INTERNAL_SERVER_ERROR)
     response.write(json.dumps(result))
     return response