Copyright 2015 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
packageinitialresources
import(
"flag"
"io"
"strings"
"time"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/admission"
"k8s.io/kubernetes/pkg/api"
apierrors"k8s.io/kubernetes/pkg/api/errors"
"k8s.io/kubernetes/pkg/api/resource"
client"k8s.io/kubernetes/pkg/client/unversioned"
)
var(
source=flag.String("ir-data-source","influxdb","Data source used by InitialResources. Supported options: influxdb.")
percentile=flag.Int64("ir-percentile",90,"Which percentile of samples should InitialResources use when estimating resources. For experiment purposes.")
)
const(
samplesThreshold=60
week=7*24*time.Hour
month=30*24*time.Hour
)
// WARNING: this feature is experimental and will definitely change.
Copyright 2015 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
packageinitialresources
import(
"flag"
"fmt"
"strings"
"time"
"github.com/golang/glog"
influxdb"github.com/influxdb/influxdb/client"
"k8s.io/kubernetes/pkg/api"
)
const(
cpuSeriesName="autoscaling.cpu.usage.1m"
memSeriesName="autoscaling.memory.usage.1m"
cpuContinuousQuery="select derivative(value) as value from \"cpu/usage_ns_cumulative\" where pod_id <> '' group by pod_id, container_name, container_base_image, time(1m) into "+cpuSeriesName
memContinuousQuery="select mean(value) as value from \"memory/usage_bytes_gauge\" where pod_id <> '' group by pod_id, container_name, container_base_image, time(1m) into "+memSeriesName
timeFormat="2006-01-02 15:04:05"
)
var(
influxdbHost=flag.String("ir-influxdb-host","localhost:8080/api/v1/proxy/namespaces/kube-system/services/monitoring-influxdb:api","Address of InfluxDB which contains metrics requred by InitialResources")
user=flag.String("ir-user","root","User used for connecting to InfluxDB")
// TODO: figure out how to better pass password here
password=flag.String("ir-password","root","Password used for connecting to InfluxDB")
db=flag.String("ir-dbname","k8s","InfluxDB database name which contains metrics requred by InitialResources")
)
// WARNING: If you are planning to add another implementation of dataSource interface please bear in mind,
// that dataSource will be moved to Heapster some time in the future and possibly rewritten.
typedataSourceinterface{
// Returns <perc>th of sample values which represent usage of <kind> for containers running <image>,
// withing time range (start, end), number of samples considered and error if occured.
// If <exactMatch> then take only samples that concern the same image (both name and take are the same),
// otherwise consider also samples with the same image a possibly different tag.
query:=fmt.Sprintf("select percentile(value, %v), count(pod_id) from %v where container_base_image%v and time > '%v' and time < '%v'",perc,series,imgPattern,start.UTC().Format(timeFormat),end.UTC().Format(timeFormat))