Yes so I start with machines and then I find out what CPU's they have and
add them to the database.

I get this error: TypeError: 'Cpu' object is not iterable

So this is what I have so far:

 def processor(self):
        self.machineList = Machine.objects.values_list('name',
flat=True).filter(typeInfo__l__exact="Linux Server")
        for server in self.machineList:
            numProcessor = self.getOutputSSH(str(server), 'cat /proc/cpuinfo
| grep processor | wc -l')
            procType = self.getOutputSSH(str(server), 'cat /proc/cpuinfo |
grep "model name"')

            b = procType.splitlines()
            procType = b[0]
            procType = procType[procType.find(":")+2:]
            print procType
            print numProcessor

            print "saving info for server " + str(server)
            cpuObject = Cpu.objects.filter(l=procType, num=numProcessor)

            if cpuObject.count() == 0:
                print "no object adding:"
                processor, is_new = Cpu.objects.create(l=procType,
num=numProcessor)
                machineObject = Machine.objects.get(name=server)
                machineObject.cpuInfo = processor
                machineObject.save()

On Wed, Jun 17, 2009 at 1:28 PM, J. Cliff Dyer <j...@sdf.lonestar.org> wrote:

>
> On Wed, 2009-06-17 at 12:55 -0500, Dan Sheffner wrote:
> > I have this in my model:
> >
> > class Machine(models.Model):
> >     name = models.CharField(max_length=100)
> >     cpuInfo = models.ForeignKey(Cpu, blank=True,  null=True)
> >
> > class Cpu(models.Model):
> >     l = models.CharField(max_length=50)
> >     num = models.IntegerField()
> >
> > so basically I add machines to the Machine table and then loop through
> > each and find out the processor type and num.  I want to insert and
> > attach it to the machine but I'm confused on how to do this? Can
> > someone show me the syntax?
> >
> > procType = 'intel'
> > numProcessor = 4
> >
> > for e in Machine.objects.all():
> >   print e.name
> >
> >
>
> Your question is a little unclear.  Do your machines already have cpus,
> and you want to find out the information, or do you want to create a
> relationship between your machines and your cpus? One of the following
> *might* meet your needs.
>
> To get the cpu information for each processor:
>
> >>> for machine in Machine.objects.all():
> ...     print machine.cpuInfo.l # l is a bad name.
> ...     print machine.cpuInfo.num
>
> Or to set a processor for each machine:
>
> >>> for machine in Machine.objects.all():
> ...     processor, is_new = Cpu.objects.get_or_create(
> ...         l=procType,
> ...         num=numProcessor
> ...     )
> ...     machine.cpuInfo = processor
> ...     machine.save()
>
>
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > >
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to