diff --git a/clmctest/monitoring/rspec.yml b/clmctest/monitoring/rspec.yml
index 03bb6d746208d1bfec28dbeda791242d5c54cbe0..51830640f7facdc0f99dd856f3e1c6aa8b3ccaa6 100644
--- a/clmctest/monitoring/rspec.yml
+++ b/clmctest/monitoring/rspec.yml
@@ -21,11 +21,11 @@ hosts:
         host: 8081
     ip_address: "203.0.113.140"
     location: "DC1"
-    sfc_id: "MS_Template_1"
+    sfc_id: "media_service_A"
     sfc_id_instance: "MS_I1"
-    sf_id: "adaptive_streaming"
-    sf_id_instance: "adaptive_streaming_I1"
-    ipendpoint_id: "adaptive_streaming_I1_apache1"
+    sf_id: "test-sf-clmc-agent-build"
+    sf_id_instance: "ms-A.ict-flame.eu"
+    ipendpoint_id: "endpoint1.ms-A.ict-flame.eu"
     influxdb_url: "http://203.0.113.100:8086"
     database_name: "CLMCMetrics"
   - name: ipendpoint2
@@ -38,11 +38,11 @@ hosts:
         host: 8082
     ip_address: "203.0.113.141"
     location: "DC2"
-    sfc_id: "MS_Template_1"
+    sfc_id: "media_service_A"
     sfc_id_instance: "MS_I1"
-    sf_id: "adaptive_streaming"
-    sf_id_instance: "adaptive_streaming_I1"
-    ipendpoint_id: "adaptive_streaming_I1_apache2"
+    sf_id: "test-sf-clmc-agent-build"
+    sf_id_instance: "ms-A.ict-flame.eu"
+    ipendpoint_id: "endpoint2.ms-A.ict-flame.eu"
     influxdb_url: "http://203.0.113.100:8086"
     database_name: "CLMCMetrics"      
   - name: test-runner
diff --git a/clmctest/monitoring/test_simresults.py b/clmctest/monitoring/test_simresults.py
index 8953a58f5e66bf57ee496ab4d5be274668e0d915..8cac2b8ec825b0d01ef56daaecb5d6aede520994 100644
--- a/clmctest/monitoring/test_simresults.py
+++ b/clmctest/monitoring/test_simresults.py
@@ -27,9 +27,9 @@ class TestSimulation(object):
         ('SELECT count(*) FROM "CLMCMetrics"."autogen"."vm_res_alloc"',
          {"time": "1970-01-01T00:00:00Z", "count_cpu": 12, "count_memory": 12, "count_storage": 12}),
          
-        ('SELECT count(*) FROM "CLMCMetrics"."autogen"."mpegdash_service_config" WHERE ipendpoint=\'adaptive_streaming_I1_apache1\'',
+        ('SELECT count(*) FROM "CLMCMetrics"."autogen"."mpegdash_service_config" WHERE ipendpoint=\'endpoint1.ms-A.ict-flame.eu\'',
          {"time" : "1970-01-01T00:00:00Z", "count_avg_running" : 3604, "count_avg_starting" : 3604, "count_avg_stopped" : 3604, "count_avg_stopping" : 3604, "count_running" : 3604, "count_starting" : 3604, "count_stopped" : 3604, "count_stopping" : 3604}),
-        ('SELECT count(*) FROM "CLMCMetrics"."autogen"."mpegdash_service_config" WHERE ipendpoint=\'adaptive_streaming_I1_apache2\'',
+        ('SELECT count(*) FROM "CLMCMetrics"."autogen"."mpegdash_service_config" WHERE ipendpoint=\'endpoint2.ms-A.ict-flame.eu\'',
          {"time" : "1970-01-01T00:00:00Z", "count_avg_running" : 3604, "count_avg_starting" : 3604, "count_avg_stopped" : 3604, "count_avg_stopping" : 3604, "count_running" : 3604, "count_starting" : 3604, "count_stopped" : 3604, "count_stopping" : 3604}),
     ])
     def test_simulation( self, run_simulator, influx_db, query, expected_result ):