- date (date)
- src_url (varchar)
- dst_url (varchar)
- cookie_id (varchar, NULL if unknown)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from oslo.config import cfg | |
from ceilometer.openstack.common import context | |
from ceilometer.openstack.common import log | |
import ceilometer.publisher as publisher | |
import ceilometer.sample as sample | |
import ceilometer.messaging as messaging | |
# use with --config-file /etc/ceilometer/ceilometer.conf |
I hereby claim:
- I am nsaje on github.
- I am nsaje (https://keybase.io/nsaje) on keybase.
- I have a public key whose fingerprint is 067B 6773 994F F2F6 B4D9 35B5 5835 8E99 1A9D 7CB0
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import mrjob | |
from mrjob.job import MRJob | |
import os | |
import sys | |
import numpy as np | |
class MRkMeans(MRJob): | |
centroids = None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"net/http" | |
"time" | |
) | |
var burnCpu = make(chan bool) |