Add policy for beam ok channel - basically we should keep it forever

This commit is contained in:
2017-06-29 16:22:24 +02:00
parent cd22c45289
commit c522956254

52
policies/timing.policies Normal file
View File

@@ -0,0 +1,52 @@
/* Timing data policy */
/* ======================================== */
/* ------------------------------------------------------------ */
/* - override settings - */
/* - - */
/* - Each default setting will be overridden, when a better - */
/* - match (exacter match) is made. It is independant of the - */
/* - sequence in this configuration file. - */
/* ------------------------------------------------------------ */
/*
Examples for modulo settings:
"modulo":1 1 point every 10 ms (100 Hz)
"modulo":100 1 point every 1 second
"modulo":60000 1 point every 10 minutes
"modulo":3600000 1 point every 1 hour
Examples for ttl settings:
PT1M 1 minute
PT2H 2 hours
P1D 1 day
P2W 2 weeks
P1M 1 month
*/
{
"policies": [
{
"pattern":":BEAMOK",
"data_reduction":{
"default":[
{
"ttl":"P10Y",
"modulo":1
/* 1 point every 1 hour */
}
]
}
}
]
}